From 3a76f80814a1e7154fefbf6dcc85733333a3c2f3 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Mon, 6 May 2024 23:28:26 +0300 Subject: [PATCH 01/10] Made changes to accomodate backward compatibility due to breaking changes --- src/Applications/Applications.md | 2 + src/Applications/v1.0/readme.md | 7 + .../Cmdlets/InvokeMgGraphRequest.cs | 3 +- .../Authentication/Models/GraphCommand.cs | 5 + .../custom/Find-MgGraphCommand.ps1 | 2 +- .../CrossDeviceExperiences.md | 3 + src/Education/Education.md | 3 + src/Groups/Groups.md | 3 +- .../Identity.DirectoryManagement.md | 2 + .../Identity.Governance.md | 3 +- src/Identity.SignIns/Identity.SignIns.md | 3 +- src/readme.graph.md | 172 ++++++++++++++++++ tools/PostGeneration/NewCommandMetadata.ps1 | 25 ++- 13 files changed, 219 insertions(+), 14 deletions(-) diff --git a/src/Applications/Applications.md b/src/Applications/Applications.md index fa68c96a06..cb6ed822ed 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$ ``` diff --git a/src/Applications/v1.0/readme.md b/src/Applications/v1.0/readme.md index 3de2c7e843..b4231f9f96 100644 --- a/src/Applications/v1.0/readme.md +++ b/src/Applications/v1.0/readme.md @@ -30,4 +30,11 @@ require: title: $(service-name) subject-prefix: '' namespace: Microsoft.Graph.PowerShell +# directive: +# - remove-path-by-operation: application_DeleteOwnerGraphBPreRef +# - where: +# verb: Remove +# subject: ApplicationOwnerDirectoryObjectByRef +# set: +# alias: Remove-MgApplicationOwnerByRef ``` 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..48e35137d8 100644 --- a/src/Authentication/Authentication/Models/GraphCommand.cs +++ b/src/Authentication/Authentication/Models/GraphCommand.cs @@ -34,6 +34,10 @@ public interface IGraphCommand /// string OutputType { get; set; } /// + /// Command Alias. + /// + string CommandAlias { get; set; } + /// /// The parameter sets of the command. /// string[] Variants { get; set; } @@ -84,6 +88,7 @@ public class GraphCommand : IGraphCommand /// The permissions needed to use the command. /// public GraphPermission[] Permissions { get; set; } + 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/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..265470082c 100644 --- a/src/readme.graph.md +++ b/src/readme.graph.md @@ -663,4 +663,176 @@ 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 + ``` diff --git a/tools/PostGeneration/NewCommandMetadata.ps1 b/tools/PostGeneration/NewCommandMetadata.ps1 index 6711fb39d9..90c87563ca 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,21 @@ $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("]", "") + } $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 +124,7 @@ $ApiVersion | ForEach-Object { } $CommandPathMapping.Add($CommandMappingKey, $MappingValue) } + } else { Write-Error "No match for $OpenApiTagPattern" From adb813071187231dd49dd5cc94755857ff3ac813 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Mon, 6 May 2024 23:31:25 +0300 Subject: [PATCH 02/10] Cleaned read me file in Applications v1.0 --- src/Applications/v1.0/readme.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Applications/v1.0/readme.md b/src/Applications/v1.0/readme.md index b4231f9f96..3de2c7e843 100644 --- a/src/Applications/v1.0/readme.md +++ b/src/Applications/v1.0/readme.md @@ -30,11 +30,4 @@ require: title: $(service-name) subject-prefix: '' namespace: Microsoft.Graph.PowerShell -# directive: -# - remove-path-by-operation: application_DeleteOwnerGraphBPreRef -# - where: -# verb: Remove -# subject: ApplicationOwnerDirectoryObjectByRef -# set: -# alias: Remove-MgApplicationOwnerByRef ``` From 4fb9c6df20e7dd89046bf065a2618efdac3e0d78 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Tue, 7 May 2024 09:20:54 +0300 Subject: [PATCH 03/10] Removed command alias from interface due to failing auth tests --- src/Authentication/Authentication/Models/GraphCommand.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Authentication/Authentication/Models/GraphCommand.cs b/src/Authentication/Authentication/Models/GraphCommand.cs index 48e35137d8..8602d59925 100644 --- a/src/Authentication/Authentication/Models/GraphCommand.cs +++ b/src/Authentication/Authentication/Models/GraphCommand.cs @@ -34,10 +34,6 @@ public interface IGraphCommand /// string OutputType { get; set; } /// - /// Command Alias. - /// - string CommandAlias { get; set; } - /// /// The parameter sets of the command. /// string[] Variants { get; set; } @@ -88,6 +84,9 @@ public class GraphCommand : IGraphCommand /// The permissions needed to use the command. /// public GraphPermission[] Permissions { get; set; } + /// + /// Command Alias. + /// public string CommandAlias { get; set ; } } From 7f3db0238100fc7ccf94dc87360bacc07ddce827 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Tue, 7 May 2024 09:42:47 +0300 Subject: [PATCH 04/10] Added API reference link to interface --- src/Authentication/Authentication/Models/GraphCommand.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Authentication/Authentication/Models/GraphCommand.cs b/src/Authentication/Authentication/Models/GraphCommand.cs index 8602d59925..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; } From b52e2182fa94247b4fc5bd47fdb6ae980cdeb50e Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 7 May 2024 15:54:06 +0000 Subject: [PATCH 05/10] Add generated MgCommandMetadata.json. [run ci] --- .../custom/common/MgCommandMetadata.json | 415193 ++++++++------- 1 file changed, 220244 insertions(+), 194949 deletions(-) diff --git a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json index 88116c9647..50e2c207ff 100644 --- a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json +++ b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json @@ -1,6 +1,18 @@ [ { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", "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": "Expand", + "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": "Expand", + "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": "Expand", + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" + }, + { + "CommandAlias": "RHV", "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": "RHV", + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": "Expand", + "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": "Expand", + "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": "RHV", "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": "Expand", + "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": "Expand", + "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": "RHV", "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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", @@ -382275,21 +399756,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 - }, - { - "Uri": "/groups/{group-id}/permissionGrants", - "Permissions": [], - "Module": "Groups", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/settings", - "Permissions": [], - "Module": "Groups", + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "RHV", + "Method": "POST", "Command": "New-MgGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/groups/{group-id}/team/tags", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "RHV", + "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": "IMicrosoftGraphTeamworkTag", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "RHV", + "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": "IMicrosoftGraphTeamworkTagMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { + "CommandAlias": "RHV", + "Method": "POST", + "Command": "New-MgGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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", @@ -394871,169 +413026,169 @@ "PermissionType": "DelegatedPersonal", "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": "RHV", + "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 + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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", @@ -396995,53 +415243,56 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgUserAuthenticationEmailMethod", + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" + }, + { + "CommandAlias": "RHV", + "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": "IMicrosoftGraphEmailAuthenticationMethod", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/methods", - "Permissions": [], - "Module": "Identity.SignIns", - "Command": "New-MgUserAuthenticationMethod", + "CommandAlias": "RHV", + "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": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/users/{user-id}/authentication/operations", - "Permissions": [], - "Module": "Identity.SignIns", - "Command": "New-MgUserAuthenticationOperation", + "CommandAlias": "RHV", + "Method": "POST", + "Command": "New-MgUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/phoneMethods", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/phoneMethods", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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" }, { - "Uri": "/users/{user-id}/messages", - "Permissions": [], - "Module": "Mail", + "CommandAlias": "RHV", + "Method": "POST", "Command": "New-MgUserMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-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}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Mail", + "CommandAlias": "RHV", + "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": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": "RHV", + "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" + ], + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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", @@ -402132,35 +420517,20 @@ "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" + "OutputType": null }, { - "Uri": "/applications/{application-id}/owners/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationOwnerByRef", + "CommandAlias": "Remove-MgBetaApplicationOwnerByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaApplicationOwnerDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/owners/{directoryObject-id}/$ref", + ], + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 + "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": "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 - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null + }, + { + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -407199,218 +425772,233 @@ "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", - "Command": "Remove-MgBetaDeviceManagementComplianceManagementPartner", - "Variants": [ - "Delete", - "DeleteViaIdentity" + "PermissionType": "Application", + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "RHV", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410504,19 +429263,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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", @@ -413762,329 +432659,341 @@ "FullDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", "IsAdmin": true, "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": 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", + "CommandAlias": "RHV", + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-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/classes/{educationClass-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassMemberByRef", + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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,277 @@ "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-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}/publishedResources/{publishedResource-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": "RHV", + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", + "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}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id1}/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +441041,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaOrganizationBranding", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +441073,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +441293,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Remove-MgBetaPlannerBucket", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +441333,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Remove-MgBetaPlannerPlan", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +441365,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Planner", - "Command": "Remove-MgBetaPlannerRoster", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +441397,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Planner", - "Command": "Remove-MgBetaPlannerRosterMember", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +441437,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +441528,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": "RHV", + "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": "RHV", + "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 +441574,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +441649,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +441740,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +441958,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +442218,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaPolicyTokenIssuancePolicy", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +442250,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +442466,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +443222,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +443593,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Remove-MgBetaRoleManagementCloudPcRoleAssignment", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +443664,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +443770,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": "RHV", + "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": "RHV", + "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 +443841,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +444052,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +444503,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +444894,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.SchemaExtensions", - "Command": "Remove-MgBetaSchemaExtension", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +444926,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Remove-MgBetaSearchAcronym", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +444958,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Remove-MgBetaSearchBookmark", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +444990,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +445306,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": "RHV", + "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": "RHV", + "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 +445357,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +445434,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +445515,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +445607,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +445669,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +446734,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +446835,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": "RHV", "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": "RHV", + "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 +446921,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": "RHV", + "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 +446976,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "RHV", + "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 +447018,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +447110,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": "RHV", + "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": "RHV", + "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 +447165,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +447539,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteColumn", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +447571,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteContentType", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +447603,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +447716,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteListColumn", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +447748,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteListContentType", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +447780,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +447873,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +448010,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +448715,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +448863,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamChannelTab", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +448943,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +449155,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": "RHV", + "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": "RHV", + "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 +449202,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleSchedulingGroup", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +449242,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +449319,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleTimeOff", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +449351,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleTimeOffReason", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +449383,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleTimeOffRequest", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +449415,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamTag", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +449447,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +450507,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +450599,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationEmailMethod", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +450631,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationFido2Method", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +450663,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": "RHV", + "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": "RHV", + "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 +450710,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +450742,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": "RHV", + "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": "RHV", + "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 +450789,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationSoftwareOathMethod", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +450821,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationTemporaryAccessPassMethod", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +450853,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +452858,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +453025,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +453087,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +453183,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": "RHV", + "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": "RHV", + "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 +453238,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +453445,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": "RHV", + "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 +453485,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": "RHV", + "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": "RHV", + "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 +453532,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfile", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453564,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileAccount", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453596,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileAddress", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453628,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileAnniversary", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453660,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileAward", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453692,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileCertification", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453724,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileEducationalActivity", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453756,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileEmail", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453788,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileInterest", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453820,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileLanguage", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453852,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileName", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453908,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileNote", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453940,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfilePatent", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +453972,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfilePhone", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +454004,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfilePosition", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +454036,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileProject", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +454068,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfilePublication", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +454100,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileSkill", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +454132,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileWebAccount", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +454164,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +454546,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaUserTeamworkInstalledApp", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +454586,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": "RHV", + "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": "RHV", + "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 +454633,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Remove-MgBetaUserTodoListTask", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +454665,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": "RHV", + "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": "RHV", + "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 +454712,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": "RHV", + "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": "RHV", + "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 +454759,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +455279,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": "RHV", + "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": "RHV", + "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 +455560,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": "RHV", + "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": "RHV", + "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 +455623,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Remove-MgBookingBusinessCustomer", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +455663,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Remove-MgBookingBusinessCustomQuestion", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +455695,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Remove-MgBookingBusinessService", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +455727,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +455829,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": "RHV", + "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": "RHV", + "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 +455884,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +455946,20 @@ "IsLeastPrivilege": true } ], - "Module": "Teams", - "Command": "Remove-MgChatPinnedMessage", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +456010,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgChatTab", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +456042,20 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Remove-MgCommunicationCall", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +456074,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +456136,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +456318,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 +456365,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 +456397,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 +456444,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 +456476,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 +456538,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 +456570,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 +456677,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 +456829,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 +456861,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 +456893,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 +457825,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 +457857,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 +457904,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 +457936,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 +457968,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 +458000,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 +458032,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +458123,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": "RHV", + "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": "RHV", + "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 +458169,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementDetectedApp", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +458201,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +458531,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfiguration", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +458563,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +458595,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +458657,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +458811,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +458843,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +458905,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementPartner", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +458937,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": "RHV", + "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": "RHV", + "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 +458983,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementResourceOperation", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459015,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementRoleAssignment", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459047,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementRoleDefinition", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459079,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +459186,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459218,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459250,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459282,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459314,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459346,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459378,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459410,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +459471,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +459533,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459565,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceScore", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459597,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459629,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459661,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459693,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticMetricHistory", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459724,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": "RHV", + "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": "RHV", + "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 +459771,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": "RHV", + "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": "RHV", + "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 +459817,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459849,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +459881,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +460063,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementWindowsMalwareInformation", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +460095,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +460292,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +460542,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +460717,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +461244,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignment", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +461276,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 +461308,35 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +461355,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentResource", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +461387,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentRubric", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +461419,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +461511,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +461801,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -442047,78 +462253,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -442127,358 +462338,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +462693,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +462778,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +463313,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgExternalConnection", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +463345,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgExternalConnectionGroup", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +463377,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgExternalConnectionGroupMember", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +463409,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +463531,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": "RHV", + "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": "RHV", + "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 +463578,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Remove-MgGroupConversation", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +463610,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +464362,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +464526,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": "RHV", + "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": "RHV", + "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 +464573,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": "RHV", + "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": "RHV", + "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 +464635,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": "RHV", + "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": "RHV", + "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 +464682,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": "RHV", + "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": "RHV", + "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 +464746,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +465574,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": "RHV", + "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 +465595,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +465735,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": "RHV", + "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 +465756,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +465811,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": "RHV", + "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 +465832,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +466531,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +466818,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgIdentityConditionalAccessNamedLocation", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +466850,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +467526,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": "RHV", + "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": "RHV", + "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 +467573,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Remove-MgOrganizationBranding", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +467605,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +467705,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Remove-MgPlannerBucket", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +467745,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Remove-MgPlannerPlan", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +467785,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +467862,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": "RHV", + "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": "RHV", + "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 +467908,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +467983,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +468044,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +468220,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +468371,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyTokenIssuancePolicy", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +468403,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +468525,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +469064,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +469200,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +469367,20 @@ "IsLeastPrivilege": false } ], - "Module": "SchemaExtensions", - "Command": "Remove-MgSchemaExtension", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +469399,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgSearchAcronym", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +469431,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgSearchBookmark", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +469463,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +469705,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": "RHV", + "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": "RHV", + "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 +469756,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +469852,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +469929,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +469991,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +470687,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +470788,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": "RHV", + "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": "RHV", + "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 +470874,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "RHV", + "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 +470916,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 +470956,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "RHV", + "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 +470996,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +471090,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": "RHV", + "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": "RHV", + "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 +471145,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +471519,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteColumn", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +471551,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteContentType", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +471583,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +471696,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteListColumn", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +471728,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteListContentType", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +471760,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +471838,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +471975,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +472225,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": "RHV", + "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 +472246,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +472386,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": "RHV", + "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 +472407,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +472462,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": "RHV", + "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 +472483,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +472748,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +472896,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamChannelTab", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +472976,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +473173,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": "RHV", + "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": "RHV", + "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 +473220,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleSchedulingGroup", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +473260,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": "RHV", + "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": "RHV", + "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 +473307,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleTimeOff", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +473339,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleTimeOffReason", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +473371,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleTimeOffRequest", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +473403,20 @@ "IsLeastPrivilege": true } ], - "Module": "Teams", - "Command": "Remove-MgTeamTag", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +473435,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +473790,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +473867,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationEmailMethod", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +473899,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationFido2Method", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +473931,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": "RHV", + "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": "RHV", + "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 +473978,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationPhoneMethod", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +474010,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationSoftwareOathMethod", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +474042,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationTemporaryAccessPassMethod", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +474074,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +475507,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +475599,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +475661,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +475776,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +476008,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgUserTeamworkInstalledApp", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +476048,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": "RHV", + "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": "RHV", + "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 +476095,20 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Remove-MgUserTodoListTask", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +476127,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": "RHV", + "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": "RHV", + "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 +476174,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": "RHV", + "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": "RHV", + "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 +476221,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +476584,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Request-MgBetaDeviceManagementComanagedDeviceRemoteAssistance", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +476616,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": "RHV", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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 +476692,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": "RHV", + "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": "RHV", + "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 +476739,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +476831,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +477314,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +477423,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +477621,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +477959,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +478041,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Restore-MgBetaSiteListItemDocumentSetVersion", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +478081,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +478418,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +478771,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +478853,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Restore-MgSiteListItemDocumentSetVersion", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +478893,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +479094,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +479349,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +479468,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +479659,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Revoke-MgBetaUserSignInSession", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +479699,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": "RHV", + "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 +479731,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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "Expand", + "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": "RHV", + "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": "RHV", + "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 +480048,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": "RHV", + "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 +480082,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +480201,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": "RHV", + "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": "RHV", + "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 +480250,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +480359,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": "RHV", + "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 +480391,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +480563,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Send-MgBetaUserOnlineMeetingVirtualAppointmentReminderSm", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +480605,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": "RHV", + "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": "RHV", + "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 +480654,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Send-MgBetaUserTeamworkActivityNotification", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +480688,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +480803,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": "RHV", + "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 +480835,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +480956,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Send-MgUserOnlineMeetingVirtualAppointmentReminderSm", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +480998,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Send-MgUserOnlineMeetingVirtualAppointmentSm", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +481032,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": "RHV", + "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 +481064,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +481209,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +481631,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +481846,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceComplianceScript", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +481897,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceCustomAttributeShellScript", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +481931,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": "RHV", + "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 +481965,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": "RHV", + "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 +481999,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceHealthScript", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +482033,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +482218,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +482518,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Set-MgBetaDriveItemContent", + "OutputType": "IMicrosoftGraphDriveItem" + }, + { + "CommandAlias": "RHV", + "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 +482558,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +482622,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +482853,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +482915,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +483122,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +483813,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +483892,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +484106,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +484525,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationBackgroundImage", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +484557,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationBannerLogo", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +484589,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationCustomCss", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +484621,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationFavicon", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +484653,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationHeaderLogo", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +484685,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationSquareLogo", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +484717,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +484779,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +484997,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +485493,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +485683,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +486192,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +486290,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +486494,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": "RHV", + "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 +486531,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Set-MgBetaUserPresence", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +486565,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Set-MgBetaUserPresenceStatusMessage", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +486599,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +486940,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": "RHV", + "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 +486974,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +487110,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": "RHV", + "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": "RHV", + "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 +487159,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +487315,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +487377,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +487584,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +487832,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +487911,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +488065,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +488392,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationBackgroundImage", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +488424,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationBannerLogo", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +488456,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationCustomCss", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +488488,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationFavicon", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +488520,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationHeaderLogo", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +488552,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationSquareLogo", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +488584,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +488646,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +488819,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +489163,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +489306,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +489631,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +489695,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +489857,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Set-MgUserPhotoContent", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +489891,22 @@ "IsLeastPrivilege": true } ], - "Module": "Users.Actions", - "Command": "Set-MgUserPresence", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +489925,22 @@ "IsLeastPrivilege": true } ], - "Module": "Users.Actions", - "Command": "Set-MgUserPresenceStatusMessage", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +489959,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +490128,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +490226,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +490342,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": "RHV", + "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": "Expand", + "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 +490389,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": "RHV", + "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": "RHV", + "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 +490436,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +490536,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +490622,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": "RHV", + "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": "RHV", + "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 +490669,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": "RHV", + "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 +490701,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": "RHV", + "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": "RHV", + "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 +490758,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Stop-MgBetaBookingBusinessAppointment", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +490809,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": "RHV", + "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 +490843,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": "RHV", + "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 +490877,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": "RHV", + "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 +490909,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +491233,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +491385,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Stop-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +491417,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +491677,39 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Stop-MgBookingBusinessAppointment", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +491728,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": "RHV", + "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 +491762,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +491949,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": "RHV", + "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": "RHV", + "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 +491996,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +492028,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +492132,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +492217,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +492343,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Suspend-MgBetaEducationSynchronizationProfile", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +492375,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": "RHV", + "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": "RHV", + "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 +492424,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 +492455,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 +492487,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 +492518,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +492610,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +492700,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 +492732,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": "RHV", + "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 +492766,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +493043,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +493169,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +493284,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +493465,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +493542,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": "RHV", + "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": "RHV", + "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 +493589,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +493668,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +493932,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +494065,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Test-MgBetaUserManagedAppUserBlocked", - "Variants": [ - "Is", - "IsViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "RHV", + "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 +494097,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": "RHV", + "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": "RHV", + "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 +494146,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelApplication", + "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" + }, + { + "CommandAlias": "RHV", + "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 +494180,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelClassificationResult", + "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" + }, + { + "CommandAlias": "RHV", + "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 +494214,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +494322,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +494484,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +494563,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +494627,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +494768,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +495700,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +495785,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +495904,56 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Update-MgApplicationSynchronizationTemplate", + "OutputType": "IMicrosoftGraphSynchronizationTemplate" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +495972,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +496602,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +496687,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +496806,60 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Update-MgBetaApplicationSynchronizationTemplate", + "OutputType": "IMicrosoftGraphSynchronizationTemplate" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +496878,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusiness", + "OutputType": "IMicrosoftGraphBookingBusiness" + }, + { + "CommandAlias": "RHV", + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessAppointment", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -474877,13 +496897,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 +496932,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessAppointment", + "OutputType": "IMicrosoftGraphBookingAppointment" + }, + { + "CommandAlias": "RHV", + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessCalendarView", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -474930,16 +496951,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": "RHV", + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessCustomer", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -474950,13 +496972,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 +497007,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessCustomer", + "OutputType": "IMicrosoftGraphBookingCustomer" + }, + { + "CommandAlias": "RHV", + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475003,13 +497026,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 +497053,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessCustomQuestion", + "OutputType": "IMicrosoftGraphBookingCustomQuestion" + }, + { + "CommandAlias": "RHV", + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessService", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475048,13 +497072,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 +497091,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessService", + "OutputType": "IMicrosoftGraphBookingService" + }, + { + "CommandAlias": "RHV", + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessStaffMember", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475085,13 +497110,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 +497129,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475142,29 +497148,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": "RHV", + "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": "RHV", + "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 +497201,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenario", + "OutputType": "IMicrosoftGraphBusinessScenario" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +497269,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenarioPlannerPlanConfiguration", + "OutputType": "IMicrosoftGraphPlannerPlanConfiguration" + }, + { + "CommandAlias": "RHV", + "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 +497303,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +497388,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenarioPlannerTaskConfiguration", + "OutputType": "IMicrosoftGraphPlannerTaskConfiguration" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +497464,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": "RHV", + "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 +497570,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +497654,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +497797,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaChatTab", + "OutputType": "IMicrosoftGraphTeamsTab" + }, + { + "CommandAlias": "RHV", + "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 +497831,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +497916,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475964,16 +498003,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": "RHV", + "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 +498024,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +498209,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCase", + "OutputType": "IMicrosoftGraphEdiscoveryCase" + }, + { + "CommandAlias": "RHV", + "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 +498243,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +498343,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +498494,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery", + "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +498545,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCaseSourceCollection", + "OutputType": "IMicrosoftGraphEdiscoverySourceCollection" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +498596,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +498689,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 +498721,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 +498772,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 +498806,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 +498840,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 +498874,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 +498908,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 +498942,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 +499095,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 +499129,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 +499163,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 +499282,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 +499469,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 +499503,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 +499537,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 +501252,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 +501286,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 +501320,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 +501354,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 +501388,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 +501422,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 +501456,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 +501558,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 +501592,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 +501626,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 +501660,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 +501694,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 +501728,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 +501762,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 +501796,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 +501830,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagement", + "ApiReferenceLink": null, "Uri": "/deviceManagement", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -479714,141 +501954,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +502116,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +502490,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementComanagementEligibleDevice", + "OutputType": "IMicrosoftGraphComanagementEligibleDevice" + }, + { + "CommandAlias": "RHV", + "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 +502524,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +502658,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +502811,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +502930,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDetectedApp", + "OutputType": "IMicrosoftGraphDetectedApp" + }, + { + "CommandAlias": "RHV", + "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 +502964,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +503448,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Update-MgBetaDeviceManagementDeviceEnrollmentConfiguration", + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" + }, + { + "CommandAlias": "RHV", + "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 +503482,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Update-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" + }, + { + "CommandAlias": "RHV", + "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 +503516,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScript", + "OutputType": "IMicrosoftGraphDeviceHealthScript" + }, + { + "CommandAlias": "RHV", + "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 +503550,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptAssignment", + "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment" + }, + { + "CommandAlias": "RHV", + "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 +503584,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", + "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState" + }, + { + "CommandAlias": "RHV", + "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 +503618,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptGlobalScript", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +503652,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptRunSummary", + "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary" + }, + { + "CommandAlias": "RHV", + "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 +503686,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceShellScript", + "OutputType": "IMicrosoftGraphDeviceShellScript" + }, + { + "CommandAlias": "RHV", + "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 +503720,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceShellScriptAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" + }, + { + "CommandAlias": "RHV", + "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 +503754,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" + }, + { + "CommandAlias": "RHV", + "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 +503788,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" + }, + { + "CommandAlias": "RHV", + "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 +503822,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +503941,24 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementExchangeConnector", + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" + }, + { + "CommandAlias": "RHV", + "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 +503977,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementExchangeOnPremisePolicyConditionalAccessSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -481662,733 +503994,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +504795,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +505186,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" + }, + { + "CommandAlias": "RHV", + "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 +505220,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +505354,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementPartner", + "OutputType": "IMicrosoftGraphDeviceManagementPartner" + }, + { + "CommandAlias": "RHV", + "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 +505388,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementRemoteActionAudit", + "OutputType": "IMicrosoftGraphRemoteActionAudit" + }, + { + "CommandAlias": "RHV", + "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 +505422,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": "RHV", + "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 +505470,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +505538,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementResourceOperation", + "OutputType": "IMicrosoftGraphResourceOperation" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +505589,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRoleAssignment", + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" + }, + { + "CommandAlias": "RHV", + "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 +505623,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRoleDefinition", + "OutputType": "IMicrosoftGraphRoleDefinition" + }, + { + "CommandAlias": "RHV", + "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 +505657,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRoleDefinitionRoleAssignment", + "OutputType": "IMicrosoftGraphRoleAssignment" + }, + { + "CommandAlias": "RHV", + "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 +505691,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRoleScopeTag", + "OutputType": "IMicrosoftGraphRoleScopeTag" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +505759,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScriptAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" + }, + { + "CommandAlias": "RHV", + "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 +505793,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScriptDeviceRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" + }, + { + "CommandAlias": "RHV", + "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 +505827,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScriptGroupAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" + }, + { + "CommandAlias": "RHV", + "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 +505861,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScriptUserRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" + }, + { + "CommandAlias": "RHV", + "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 +505895,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +506218,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": "RHV", + "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": "RHV", + "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 +506269,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice" + }, + { + "CommandAlias": "RHV", + "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 +506303,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" + }, + { + "CommandAlias": "RHV", + "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 +506337,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion" + }, + { + "CommandAlias": "RHV", + "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 +506371,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" + }, + { + "CommandAlias": "RHV", + "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 +506405,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": "RHV", + "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 +506439,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": "RHV", + "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 +506473,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" + }, + { + "CommandAlias": "RHV", + "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 +506507,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": "RHV", + "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 +506541,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" + }, + { + "CommandAlias": "RHV", + "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 +506575,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" + }, + { + "CommandAlias": "RHV", + "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 +506607,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +506658,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" + }, + { + "CommandAlias": "RHV", + "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 +506692,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact" + }, + { + "CommandAlias": "RHV", + "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 +506724,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails" + }, + { + "CommandAlias": "RHV", + "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 +506758,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact" + }, + { + "CommandAlias": "RHV", + "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 +506792,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance" + }, + { + "CommandAlias": "RHV", + "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 +506826,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" + }, + { + "CommandAlias": "RHV", + "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 +506860,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance" + }, + { + "CommandAlias": "RHV", + "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 +506894,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance" + }, + { + "CommandAlias": "RHV", + "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 +506926,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": "RHV", + "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 +506960,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +507011,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": "RHV", + "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 +507045,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" + }, + { + "CommandAlias": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScope", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -484608,13 +507062,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 +507081,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope" + }, + { + "CommandAlias": "RHV", + "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 +507115,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" + }, + { + "CommandAlias": "RHV", + "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 +507149,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" + }, + { + "CommandAlias": "RHV", + "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 +507183,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": "RHV", + "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 +507217,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +507268,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity" + }, + { + "CommandAlias": "RHV", + "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 +507302,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess" + }, + { + "CommandAlias": "RHV", + "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 +507336,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": "RHV", + "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 +507370,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" + }, + { + "CommandAlias": "RHV", + "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 +507404,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice" + }, + { + "CommandAlias": "RHV", + "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 +507436,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" + }, + { + "CommandAlias": "RHV", + "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 +507470,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" + }, + { + "CommandAlias": "RHV", + "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 +507504,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" + }, + { + "CommandAlias": "RHV", + "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 +507538,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" + }, + { + "CommandAlias": "RHV", + "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 +507570,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" + }, + { + "CommandAlias": "RHV", + "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 +507604,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" + }, + { + "CommandAlias": "RHV", + "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 +507638,205 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +507855,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +508225,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementWindowsMalwareInformation", + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" + }, + { + "CommandAlias": "RHV", + "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 +508259,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +508816,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +509062,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +509308,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +510039,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignment", + "OutputType": "IMicrosoftGraphEducationAssignment" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +510090,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentDefault", + "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +510158,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentRubric", + "OutputType": "IMicrosoftGraphEducationRubric" + }, + { + "CommandAlias": "RHV", + "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 +510192,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentSetting", + "OutputType": "IMicrosoftGraphEducationAssignmentSettings" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +510243,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentSettingGradingScheme", + "OutputType": "IMicrosoftGraphEducationGradingScheme" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +510294,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +510649,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "POST", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/reprocess", + "ApiVersion": "beta", "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -488298,96 +511019,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "POST", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/reprocess", + "ApiVersion": "beta", "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -488396,96 +511123,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "POST", "Command": "Update-MgBetaEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/reprocess", + "ApiVersion": "beta", "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -488494,121 +511227,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +511378,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Update-MgBetaExternalConnection", + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" + }, + { + "CommandAlias": "RHV", + "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 +511412,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +511514,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489215,16 +511990,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489235,112 +512011,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489351,48 +512134,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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyJournalLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489403,96 +512189,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489503,16 +512295,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489523,16 +512316,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489543,16 +512337,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": "RHV", + "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 +512358,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490063,16 +512889,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490083,16 +512910,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490103,16 +512931,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": "RHV", + "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 +512952,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490303,16 +513143,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490323,16 +513164,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490343,16 +513185,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": "RHV", + "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 +513206,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490527,16 +513380,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490547,16 +513401,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490567,16 +513422,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": "RHV", + "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 +513443,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +513666,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Update-MgBetaGroup", + "OutputType": "IMicrosoftGraphGroup" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +513734,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Update-MgBetaGroupCalendarEvent", + "OutputType": "IMicrosoftGraphEvent" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +513785,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +514839,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +514960,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +515132,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +515304,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": "RHV", + "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 +515325,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": "RHV", + "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 +515346,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": "RHV", + "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 +515367,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": "RHV", + "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 +515388,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +516531,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": "RHV", + "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 +516552,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +516692,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": "RHV", + "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 +516713,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +516768,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": "RHV", + "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 +516789,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +517590,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +518081,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaIdentityConditionalAccessNamedLocation", + "OutputType": "IMicrosoftGraphNamedLocation" + }, + { + "CommandAlias": "RHV", + "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 +518123,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": "RHV", + "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 +518163,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "POST", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlert", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/refresh", + "ApiVersion": "beta", "Variants": [ "Refresh", "Refresh1", @@ -496146,96 +519337,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -496246,263 +519443,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +519745,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +519923,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganization", + "OutputType": "IMicrosoftGraphOrganization" + }, + { + "CommandAlias": "RHV", + "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 +519957,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganizationBranding", + "OutputType": "IMicrosoftGraphOrganizationalBranding" + }, + { + "CommandAlias": "RHV", + "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 +519991,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +520076,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganizationSettingContactInsight", + "OutputType": "IMicrosoftGraphInsightsSettings" + }, + { + "CommandAlias": "RHV", + "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 +520110,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganizationSettingItemInsight", + "OutputType": "IMicrosoftGraphInsightsSettings" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +520161,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +520286,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerBucket", + "OutputType": "IMicrosoftGraphPlannerBucket" + }, + { + "CommandAlias": "RHV", + "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 +520328,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerPlan", + "OutputType": "IMicrosoftGraphPlannerPlan" + }, + { + "CommandAlias": "RHV", + "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 +520370,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerPlanDetail", + "OutputType": "IMicrosoftGraphPlannerPlanDetails" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +520446,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerTask", + "OutputType": "IMicrosoftGraphPlannerTask" + }, + { + "CommandAlias": "RHV", + "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 +520488,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerTaskAssignedToTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" + }, + { + "CommandAlias": "RHV", + "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 +520530,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerTaskBucketTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" + }, + { + "CommandAlias": "RHV", + "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 +520572,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerTaskDetail", + "OutputType": "IMicrosoftGraphPlannerTaskDetails" + }, + { + "CommandAlias": "RHV", + "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 +520614,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": "RHV", + "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": "RHV", + "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 +520663,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": "RHV", + "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": "RHV", + "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 +520712,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +520793,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyAuthenticationStrengthPolicy", + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" + }, + { + "CommandAlias": "RHV", + "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 +520827,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +520927,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +521051,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +521147,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": "RHV", + "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 +521179,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +521349,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +521434,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyTokenIssuancePolicy", + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" + }, + { + "CommandAlias": "RHV", + "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 +521468,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +521551,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Update-MgBetaPrintPrinter", + "OutputType": "IMicrosoftGraphPrinter" + }, + { + "CommandAlias": "RHV", + "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 +521593,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaProgramControl", + "ApiReferenceLink": null, + "Uri": "/programControls/{programControl-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -499250,16 +522602,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaProgramControlProgram", + "ApiReferenceLink": null, + "Uri": "/programControls/{programControl-id}/program", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -499270,283 +522623,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +522945,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +523103,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": "RHV", + "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": "RHV", + "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 +523152,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +523295,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +523531,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +524462,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.SchemaExtensions", - "Command": "Update-MgBetaSchemaExtension", + "OutputType": "IMicrosoftGraphSchemaExtension" + }, + { + "CommandAlias": "RHV", + "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 +524496,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Update-MgBetaSearchAcronym", + "OutputType": "IMicrosoftGraphSearchAcronym" + }, + { + "CommandAlias": "RHV", + "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 +524530,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +524930,41 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCase", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +524983,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +525068,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +525155,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +525240,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" + }, + { + "CommandAlias": "RHV", + "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 +525274,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSearch", + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +525342,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +526552,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +526696,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503427,16 +527021,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaShareListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503447,16 +527042,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": "RHV", + "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 +527063,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": "RHV", + "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 +527084,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaShareListItemField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503507,16 +527105,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaShareListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503527,16 +527126,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": "RHV", + "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 +527147,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": "RHV", + "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 +527168,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +527357,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": "RHV", + "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 +527391,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": "RHV", + "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 +527425,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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503846,16 +527461,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": "RHV", + "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 +527482,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": "RHV", + "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 +527503,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": "RHV", + "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": "RHV", + "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 +527556,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteListColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": "RHV", + "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 +527590,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteListContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": "RHV", + "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 +527624,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +528323,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": "RHV", + "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 +528344,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +528484,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": "RHV", + "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 +528505,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +528560,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": "RHV", + "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 +528581,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +528837,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeam", + "OutputType": "IMicrosoftGraphTeam" + }, + { + "CommandAlias": "RHV", + "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 +528887,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeamChannel", + "OutputType": "IMicrosoftGraphChannel" + }, + { + "CommandAlias": "RHV", + "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 +528937,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +529087,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": "RHV", + "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 +529201,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": "RHV", + "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 +529251,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +529574,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +529693,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +530982,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +531084,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaUserAuthenticationEmailMethod", + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +531152,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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -507400,2301 +531205,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +533667,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": "RHV", + "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -509741,16 +533691,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": "RHV", + "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 +533712,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +533986,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaUserPlanner", + "OutputType": "IMicrosoftGraphPlannerUser" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +534054,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileAccount", + "OutputType": "IMicrosoftGraphUserAccountInformation" + }, + { + "CommandAlias": "RHV", + "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 +534088,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileAddress", + "OutputType": "IMicrosoftGraphItemAddress" + }, + { + "CommandAlias": "RHV", + "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 +534122,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileAnniversary", + "OutputType": "IMicrosoftGraphPersonAnnualEvent" + }, + { + "CommandAlias": "RHV", + "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 +534156,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileAward", + "OutputType": "IMicrosoftGraphPersonAward" + }, + { + "CommandAlias": "RHV", + "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 +534190,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileCertification", + "OutputType": "IMicrosoftGraphPersonCertification" + }, + { + "CommandAlias": "RHV", + "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 +534224,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileEducationalActivity", + "OutputType": "IMicrosoftGraphEducationalActivity" + }, + { + "CommandAlias": "RHV", + "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 +534258,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileEmail", + "OutputType": "IMicrosoftGraphItemEmail" + }, + { + "CommandAlias": "RHV", + "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 +534292,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileInterest", + "OutputType": "IMicrosoftGraphPersonInterest" + }, + { + "CommandAlias": "RHV", + "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 +534326,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileLanguage", + "OutputType": "IMicrosoftGraphLanguageProficiency" + }, + { + "CommandAlias": "RHV", + "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 +534360,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileName", + "OutputType": "IMicrosoftGraphPersonName" + }, + { + "CommandAlias": "RHV", + "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 +534418,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileNote", + "OutputType": "IMicrosoftGraphPersonAnnotation" + }, + { + "CommandAlias": "RHV", + "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 +534452,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfilePatent", + "OutputType": "IMicrosoftGraphItemPatent" + }, + { + "CommandAlias": "RHV", + "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 +534486,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfilePhone", + "OutputType": "IMicrosoftGraphItemPhone" + }, + { + "CommandAlias": "RHV", + "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 +534520,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfilePosition", + "OutputType": "IMicrosoftGraphWorkPosition" + }, + { + "CommandAlias": "RHV", + "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 +534554,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileProject", + "OutputType": "IMicrosoftGraphProjectParticipation" + }, + { + "CommandAlias": "RHV", + "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 +534588,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfilePublication", + "OutputType": "IMicrosoftGraphItemPublication" + }, + { + "CommandAlias": "RHV", + "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 +534622,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileSkill", + "OutputType": "IMicrosoftGraphSkillProficiency" + }, + { + "CommandAlias": "RHV", + "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 +534656,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileWebAccount", + "OutputType": "IMicrosoftGraphWebAccount" + }, + { + "CommandAlias": "RHV", + "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 +534690,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +534826,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +534911,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +535064,39 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoList", + "OutputType": "IMicrosoftGraphTodoTaskList" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +535115,39 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoListTask", + "OutputType": "IMicrosoftGraphTodoTask" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +535166,39 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoListTaskChecklistItem", + "OutputType": "IMicrosoftGraphChecklistItem" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +535217,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +535999,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusiness", + "OutputType": "IMicrosoftGraphBookingBusiness" + }, + { + "CommandAlias": "RHV", + "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 +536049,39 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessAppointment", + "OutputType": "IMicrosoftGraphBookingAppointment" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +536116,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessCustomer", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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 +536158,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessCustomQuestion", + "OutputType": "IMicrosoftGraphBookingCustomQuestion" + }, + { + "CommandAlias": "RHV", + "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 +536192,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessService", + "OutputType": "IMicrosoftGraphBookingService" + }, + { + "CommandAlias": "RHV", + "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 +536226,39 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessStaffMember", + "OutputType": null + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +536285,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": "RHV", + "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 +536391,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +536475,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +536601,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgChatTab", + "OutputType": "IMicrosoftGraphTeamsTab" + }, + { + "CommandAlias": "RHV", + "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 +536635,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +536720,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +536947,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 +536979,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 +537030,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 +537064,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 +537098,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 +537132,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 +537166,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 +537200,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 +537251,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 +537285,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 +537319,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 +537421,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 +537591,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 +537625,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 +537659,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 +538713,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 +538747,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 +538781,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 +538815,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 +538849,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 +538883,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 +538917,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 +538951,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +539041,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagement" + }, + { + "CommandAlias": "RHV", + "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 +539073,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": "RHV", + "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": "RHV", + "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 +539124,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": "RHV", + "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 +539156,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Update-MgDeviceManagementConditionalAccessSetting", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { + "CommandAlias": "RHV", + "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 +539190,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementDetectedApp", + "OutputType": "IMicrosoftGraphDetectedApp" + }, + { + "CommandAlias": "RHV", + "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 +539224,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +539594,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Update-MgDeviceManagementDeviceEnrollmentConfiguration", + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" + }, + { + "CommandAlias": "RHV", + "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 +539628,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" + }, + { + "CommandAlias": "RHV", + "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 +539662,56 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementExchangeConnector", + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +539730,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +539900,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" + }, + { + "CommandAlias": "RHV", + "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 +539934,56 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementMobileThreatDefenseConnector", + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +540002,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementPartner", + "OutputType": "IMicrosoftGraphDeviceManagementPartner" + }, + { + "CommandAlias": "RHV", + "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 +540036,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": "RHV", + "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 +540084,22 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Update-MgDeviceManagementReport", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementReports", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementReports" }, { + "CommandAlias": "RHV", + "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 +540118,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementResourceOperation", + "OutputType": "IMicrosoftGraphResourceOperation" + }, + { + "CommandAlias": "RHV", + "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 +540152,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementRoleAssignment", + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" + }, + { + "CommandAlias": "RHV", + "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 +540186,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementRoleDefinition", + "OutputType": "IMicrosoftGraphRoleDefinition" + }, + { + "CommandAlias": "RHV", + "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 +540220,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +540339,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" + }, + { + "CommandAlias": "RHV", + "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 +540373,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" + }, + { + "CommandAlias": "RHV", + "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 +540407,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": "RHV", + "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 +540441,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": "RHV", + "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 +540475,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" + }, + { + "CommandAlias": "RHV", + "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 +540509,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": "RHV", + "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 +540543,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" + }, + { + "CommandAlias": "RHV", + "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 +540577,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" + }, + { + "CommandAlias": "RHV", + "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 +540609,39 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBaseline", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +540660,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": "RHV", + "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 +540694,39 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +540745,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" + }, + { + "CommandAlias": "RHV", + "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 +540779,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" + }, + { + "CommandAlias": "RHV", + "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 +540813,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" + }, + { + "CommandAlias": "RHV", + "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 +540847,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" + }, + { + "CommandAlias": "RHV", + "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 +540881,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" + }, + { + "CommandAlias": "RHV", + "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 +540915,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": "RHV", + "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 +540949,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" + }, + { + "CommandAlias": "RHV", + "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 +540981,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" + }, + { + "CommandAlias": "RHV", + "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 +541015,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" + }, + { + "CommandAlias": "RHV", + "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 +541047,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" + }, + { + "CommandAlias": "RHV", + "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 +541081,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" + }, + { + "CommandAlias": "RHV", + "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 +541115,243 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +541370,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementWindowsMalwareInformation", + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" + }, + { + "CommandAlias": "RHV", + "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 +541404,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +541835,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +542081,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +542812,39 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Update-MgEducationClassAssignment", + "OutputType": "IMicrosoftGraphEducationAssignment" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +542863,39 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentDefault", + "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +542914,22 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentRubric", + "OutputType": "IMicrosoftGraphEducationRubric" + }, + { + "CommandAlias": "RHV", + "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 +542948,56 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentSetting", + "OutputType": "IMicrosoftGraphEducationAssignmentSettings" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +543016,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +543286,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +543622,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +543675,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519305,16 +543751,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": "RHV", + "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 +543772,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": "RHV", + "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 +543793,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": "RHV", + "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 +543814,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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519405,16 +543856,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": "RHV", + "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 +543877,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": "RHV", + "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 +543898,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": "RHV", + "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 +543919,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +544233,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": "RHV", + "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 +544254,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": "RHV", + "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 +544275,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": "RHV", + "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 +544296,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": "RHV", + "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": "RHV", + "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 +544338,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": "RHV", + "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 +544359,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": "RHV", + "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 +544380,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": "RHV", + "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 +544401,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +544977,22 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Update-MgExternalConnection", + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" + }, + { + "CommandAlias": "RHV", + "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 +545011,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +545096,22 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Update-MgExternalConnectionSchema", + "OutputType": "IMicrosoftGraphExternalConnectorsSchema" + }, + { + "CommandAlias": "RHV", + "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 +545130,56 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Update-MgGroup", + "OutputType": "IMicrosoftGraphGroup" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +545198,39 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Update-MgGroupCalendarEvent", + "OutputType": "IMicrosoftGraphEvent" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +545249,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +546269,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +546339,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +546515,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +546704,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": "RHV", + "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 +546725,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": "RHV", + "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 +546746,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -522909,16 +547566,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": "RHV", + "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 +547587,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": "RHV", + "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 +547608,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": "RHV", + "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 +547637,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": "RHV", + "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 +547666,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": "RHV", + "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 +547687,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": "RHV", + "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 +547708,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": "RHV", + "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 +547729,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": "RHV", + "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 +547750,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": "RHV", + "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 +547771,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": "RHV", + "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 +547792,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": "RHV", + "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 +547813,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": "RHV", + "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 +547842,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": "RHV", + "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 +547871,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": "RHV", + "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 +547892,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": "RHV", + "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 +547913,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": "RHV", + "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 +547942,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": "RHV", + "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 +547971,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": "RHV", + "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 +547992,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": "RHV", + "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 +548013,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": "RHV", + "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 +548034,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": "RHV", + "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 +548055,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": "RHV", + "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 +548076,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": "RHV", + "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 +548097,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": "RHV", + "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 +548118,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": "RHV", + "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 +548139,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": "RHV", + "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 +548160,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": "RHV", + "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 +548181,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +548744,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +548982,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgIdentityConditionalAccessNamedLocation", + "OutputType": "IMicrosoftGraphNamedLocation" + }, + { + "CommandAlias": "RHV", + "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 +549024,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -525010,187 +549785,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +550006,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgOauth2PermissionGrant", + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" + }, + { + "CommandAlias": "RHV", + "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 +550048,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Update-MgOrganization", + "OutputType": "IMicrosoftGraphOrganization" + }, + { + "CommandAlias": "RHV", + "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 +550082,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Update-MgOrganizationBranding", + "OutputType": "IMicrosoftGraphOrganizationalBranding" + }, + { + "CommandAlias": "RHV", + "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 +550116,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +550224,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerBucket", + "OutputType": "IMicrosoftGraphPlannerBucket" + }, + { + "CommandAlias": "RHV", + "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 +550266,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerPlan", + "OutputType": "IMicrosoftGraphPlannerPlan" + }, + { + "CommandAlias": "RHV", + "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 +550308,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerPlanDetail", + "OutputType": "IMicrosoftGraphPlannerPlanDetails" + }, + { + "CommandAlias": "RHV", + "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 +550350,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTask", + "OutputType": "IMicrosoftGraphPlannerTask" + }, + { + "CommandAlias": "RHV", + "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 +550392,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTaskAssignedToTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" + }, + { + "CommandAlias": "RHV", + "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 +550434,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTaskBucketTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" + }, + { + "CommandAlias": "RHV", + "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 +550476,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTaskDetail", + "OutputType": "IMicrosoftGraphPlannerTaskDetails" + }, + { + "CommandAlias": "RHV", + "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 +550518,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTaskProgressTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" + }, + { + "CommandAlias": "RHV", + "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 +550552,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": "RHV", + "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": "RHV", + "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 +550601,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +550682,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyAuthenticationStrengthPolicy", + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" + }, + { + "CommandAlias": "RHV", + "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 +550716,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +550782,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +550906,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": "RHV", + "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": "RHV", + "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 +550957,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": "RHV", + "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 +550989,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +551125,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyRoleManagementPolicyRule", + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" + }, + { + "CommandAlias": "RHV", + "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 +551159,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyTokenIssuancePolicy", + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" + }, + { + "CommandAlias": "RHV", + "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 +551193,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +551276,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Update-MgPrintPrinter", + "OutputType": "IMicrosoftGraphPrinter" + }, + { + "CommandAlias": "RHV", + "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 +551318,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +551848,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +552016,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +552337,22 @@ "IsLeastPrivilege": false } ], - "Module": "SchemaExtensions", - "Command": "Update-MgSchemaExtension", + "OutputType": "IMicrosoftGraphSchemaExtension" + }, + { + "CommandAlias": "RHV", + "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 +552371,22 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Update-MgSearchAcronym", + "OutputType": "IMicrosoftGraphSearchAcronym" + }, + { + "CommandAlias": "RHV", + "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 +552405,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +552707,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": "RHV", + "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": "RHV", + "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 +552756,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +552856,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +552924,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" + }, + { + "CommandAlias": "RHV", + "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 +552958,56 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCaseSearch", + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +553026,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +553842,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529253,16 +554252,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": "RHV", + "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 +554273,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": "RHV", + "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 +554294,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": "RHV", + "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 +554315,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": "RHV", + "Method": "PATCH", "Command": "Update-MgShareListItemField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529333,16 +554336,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": "RHV", + "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 +554357,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": "RHV", + "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 +554378,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": "RHV", + "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 +554399,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +554588,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": "RHV", + "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 +554622,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": "RHV", + "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 +554656,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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529672,16 +554692,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": "RHV", + "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 +554713,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": "RHV", + "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 +554734,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": "RHV", + "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": "RHV", + "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 +554787,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteListColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": "RHV", + "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 +554821,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteListContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": "RHV", + "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 +554855,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530423,16 +555486,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": "RHV", + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530443,16 +555507,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": "RHV", + "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 +555528,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": "RHV", + "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 +555557,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": "RHV", + "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 +555586,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": "RHV", + "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 +555607,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": "RHV", + "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 +555628,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": "RHV", + "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 +555649,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": "RHV", + "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 +555670,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": "RHV", + "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 +555691,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": "RHV", + "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 +555712,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": "RHV", + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530659,16 +555733,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": "RHV", + "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 +555762,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": "RHV", + "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 +555791,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": "RHV", + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530735,16 +555812,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": "RHV", + "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 +555833,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": "RHV", + "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 +555862,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": "RHV", + "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 +555891,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": "RHV", + "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 +555912,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": "RHV", + "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 +555933,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": "RHV", + "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 +555954,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": "RHV", + "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 +555975,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": "RHV", + "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 +555996,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": "RHV", + "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 +556017,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": "RHV", + "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 +556038,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": "RHV", + "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 +556059,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": "RHV", + "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 +556080,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": "RHV", + "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 +556101,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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +556187,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgTeam", + "OutputType": "IMicrosoftGraphTeam" + }, + { + "CommandAlias": "RHV", + "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 +556237,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgTeamChannel", + "OutputType": "IMicrosoftGraphChannel" + }, + { + "CommandAlias": "RHV", + "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 +556287,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +556437,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": "RHV", + "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 +556551,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": "RHV", + "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 +556601,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +556958,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +557416,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +557501,56 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgUserAuthenticationEmailMethod", + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +557569,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": "RHV", + "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": "RHV", + "Method": "PATCH", "Command": "Update-MgUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -532451,1773 +557605,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +559511,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +559647,56 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgUserPlanner", + "OutputType": "IMicrosoftGraphPlannerUser" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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": "RHV", + "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 +559715,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Update-MgUserSetting", + "OutputType": "IMicrosoftGraphUserSettings" + }, + { + "CommandAlias": "RHV", + "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 +559749,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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 +559851,39 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Update-MgUserTodoList", + "OutputType": "IMicrosoftGraphTodoTaskList" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +559902,39 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Update-MgUserTodoListTask", + "OutputType": "IMicrosoftGraphTodoTask" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +559953,39 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Update-MgUserTodoListTaskChecklistItem", + "OutputType": "IMicrosoftGraphChecklistItem" + }, + { + "CommandAlias": "RHV", + "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": "RHV", + "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 +560004,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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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": "RHV", + "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" } ] From 2e0fb03964aea211016d23fb0b2d38cc1277faf1 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Wed, 8 May 2024 08:18:48 +0300 Subject: [PATCH 06/10] Added pester tests --- .../test/BreakingChanges.Tests.ps1 | 31 +++++++++++++++++++ tools/PostGeneration/NewCommandMetadata.ps1 | 3 ++ 2 files changed, 34 insertions(+) create mode 100644 src/Authentication/Authentication/test/BreakingChanges.Tests.ps1 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/tools/PostGeneration/NewCommandMetadata.ps1 b/tools/PostGeneration/NewCommandMetadata.ps1 index 90c87563ca..160487ba3d 100644 --- a/tools/PostGeneration/NewCommandMetadata.ps1 +++ b/tools/PostGeneration/NewCommandMetadata.ps1 @@ -78,6 +78,9 @@ $ApiVersion | ForEach-Object { if (-not($Null -eq $CommandAliasValue)) { $CommandAliasValue = $CommandAliasValue.Replace("[global::System.Management.Automation.Alias(`"", "").Replace("`")", "").Replace("]", "") } + if($CommandAliasValue -eq "RHV") { + $CommandAliasValue = $null + } $MappingValue = @{ Command = $CommandName Variants = [System.Collections.ArrayList]@($VariantName) From 8944093ad7d242ddd9aa646183458fea41d48963 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Wed, 8 May 2024 08:48:30 +0300 Subject: [PATCH 07/10] Updated metadata json file to remove commandAlias with RHV --- .../custom/common/MgCommandMetadata.json | 29238 ++++++++-------- 1 file changed, 14619 insertions(+), 14619 deletions(-) diff --git a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json index 50e2c207ff..c1faada29a 100644 --- a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json +++ b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json @@ -1,6 +1,6 @@ [ { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgApplicationKey", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0", @@ -42,7 +42,7 @@ "OutputType": "IMicrosoftGraphKeyCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgApplicationPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0", @@ -84,7 +84,7 @@ "OutputType": "IMicrosoftGraphPasswordCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaAccessReviewDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-beta", @@ -116,7 +116,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaAccessReviewInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-beta", @@ -131,7 +131,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaApplicationKey", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-beta", @@ -173,7 +173,7 @@ "OutputType": "IMicrosoftGraphKeyCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaApplicationPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-beta", @@ -215,7 +215,7 @@ "OutputType": "IMicrosoftGraphPasswordCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaChatMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", @@ -232,7 +232,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaCommunicationCallLargeGalleryView", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-beta", @@ -274,7 +274,7 @@ "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaComplianceEdiscoveryCaseCustodianHold", "ApiReferenceLink": null, @@ -293,7 +293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold", "ApiReferenceLink": null, @@ -312,7 +312,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-applytags?view=graph-rest-beta", @@ -346,7 +346,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewset-addtoreviewset?view=graph-rest-beta", @@ -380,7 +380,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", "ApiReferenceLink": null, @@ -395,7 +395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", "ApiReferenceLink": null, @@ -412,7 +412,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-beta", @@ -429,7 +429,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyConfig", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-applyconfig?view=graph-rest-beta", @@ -444,7 +444,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaDriveListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", @@ -461,7 +461,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaDriveListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", @@ -478,7 +478,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -495,7 +495,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivityResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaGroupDriveListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", @@ -512,7 +512,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaGroupDriveListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", @@ -529,7 +529,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaGroupFavorite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-addfavorite?view=graph-rest-beta", @@ -544,7 +544,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaGroupSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-beta", @@ -561,7 +561,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaGroupSiteContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", @@ -578,7 +578,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaGroupSiteContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", @@ -595,7 +595,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaGroupSiteListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", @@ -612,7 +612,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaGroupSiteListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", @@ -629,7 +629,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaGroupToLifecyclePolicy", "ApiReferenceLink": null, @@ -646,7 +646,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta", @@ -661,7 +661,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta", @@ -676,7 +676,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-applyhold?view=graph-rest-beta", @@ -712,7 +712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-applyhold?view=graph-rest-beta", @@ -748,7 +748,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-applytags?view=graph-rest-beta", @@ -782,7 +782,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-addtoreviewset?view=graph-rest-beta", @@ -816,7 +816,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaServicePrincipalTokenSigningCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-beta", @@ -858,7 +858,7 @@ "OutputType": "IMicrosoftGraphSelfSignedCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaShareListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", @@ -875,7 +875,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaShareListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", @@ -892,7 +892,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-beta", @@ -907,7 +907,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaSiteContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", @@ -924,7 +924,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaSiteContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", @@ -958,7 +958,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaSiteListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", @@ -992,7 +992,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaSiteListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", @@ -1026,7 +1026,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaTeamChannelMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", @@ -1043,7 +1043,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaTeamMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", @@ -1060,7 +1060,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaTeamPrimaryChannelMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", @@ -1077,7 +1077,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaTeamworkDeletedTeamChannelMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", @@ -1094,7 +1094,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaTenantRelationshipManagedTenantAlertUserInputLog", "ApiReferenceLink": null, @@ -1111,7 +1111,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaTenantRelationshipManagedTenantManagementAction", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managementaction-apply?view=graph-rest-beta", @@ -1128,7 +1128,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementActionDeploymentStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaUserChatMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", @@ -1145,7 +1145,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaUserDriveListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", @@ -1162,7 +1162,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaUserDriveListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", @@ -1179,7 +1179,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaUserFollowedSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-beta", @@ -1196,7 +1196,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgBetaUserPendingAccessReviewInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta", @@ -1364,7 +1364,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgChatMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", @@ -1381,7 +1381,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgCommunicationCallLargeGalleryView", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0", @@ -1423,7 +1423,7 @@ "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgDriveListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", @@ -1440,7 +1440,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgDriveListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", @@ -1457,7 +1457,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -1474,7 +1474,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivityResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgGroupDriveListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", @@ -1491,7 +1491,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgGroupDriveListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", @@ -1508,7 +1508,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgGroupFavorite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-addfavorite?view=graph-rest-1.0", @@ -1523,7 +1523,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgGroupSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0", @@ -1540,7 +1540,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgGroupSiteContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", @@ -1557,7 +1557,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgGroupSiteContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", @@ -1574,7 +1574,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgGroupSiteListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", @@ -1591,7 +1591,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgGroupSiteListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", @@ -1608,7 +1608,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgGroupToLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-addgroup?view=graph-rest-1.0", @@ -1625,7 +1625,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-1.0", @@ -1640,7 +1640,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgSecurityCaseEdiscoveryCaseCustodianHold", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-applyhold?view=graph-rest-1.0", @@ -1676,7 +1676,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-applyhold?view=graph-rest-1.0", @@ -1712,7 +1712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-applytags?view=graph-rest-1.0", @@ -1746,7 +1746,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-addtoreviewset?view=graph-rest-1.0", @@ -1780,7 +1780,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgServicePrincipalKey", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addkey?view=graph-rest-1.0", @@ -1822,7 +1822,7 @@ "OutputType": "IMicrosoftGraphKeyCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgServicePrincipalPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addpassword?view=graph-rest-1.0", @@ -1864,7 +1864,7 @@ "OutputType": "IMicrosoftGraphPasswordCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgServicePrincipalTokenSigningCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0", @@ -1906,7 +1906,7 @@ "OutputType": "IMicrosoftGraphSelfSignedCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgShareListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", @@ -1923,7 +1923,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgShareListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", @@ -1940,7 +1940,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0", @@ -1955,7 +1955,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgSiteContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", @@ -1972,7 +1972,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgSiteContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", @@ -2006,7 +2006,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgSiteListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", @@ -2040,7 +2040,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgSiteListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", @@ -2074,7 +2074,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgTeamChannelMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", @@ -2091,7 +2091,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgTeamMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", @@ -2108,7 +2108,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgTeamPrimaryChannelMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", @@ -2125,7 +2125,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgTeamworkDeletedTeamChannelMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", @@ -2142,7 +2142,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgUserChatMember", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", @@ -2159,7 +2159,7 @@ "OutputType": "IMicrosoftGraphActionResultPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgUserDriveListContentTypeCopy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", @@ -2176,7 +2176,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgUserDriveListContentTypeCopyFromContentTypeHub", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", @@ -2193,7 +2193,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Add-MgUserFollowedSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0", @@ -2210,7 +2210,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Approve-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", "ApiReferenceLink": null, @@ -2225,7 +2225,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Approve-MgBetaDeviceManagementElevationRequest", "ApiReferenceLink": null, @@ -2242,7 +2242,7 @@ "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Approve-MgBetaDeviceManagementOperationApprovalRequest", "ApiReferenceLink": null, @@ -2276,7 +2276,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Approve-MgBetaDeviceManagementZebraFotaConnectorFotaApp", "ApiReferenceLink": null, @@ -2290,7 +2290,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgApplicationVerifiedPublisher", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-unsetverifiedpublisher?view=graph-rest-1.0", @@ -2305,7 +2305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaApplicationVerifiedPublisher", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-unsetverifiedpublisher?view=graph-rest-beta", @@ -2320,7 +2320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaChatMessageReaction", "ApiReferenceLink": null, @@ -2337,7 +2337,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaChatMessageReplyReaction", "ApiReferenceLink": null, @@ -2354,7 +2354,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaCommunicationPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-beta", @@ -2371,7 +2371,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaCommunicationPresenceUserPreferredPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-beta", @@ -2386,7 +2386,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-purgedata?view=graph-rest-beta", @@ -2433,7 +2433,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -2475,7 +2475,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -2517,7 +2517,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-purgedata?view=graph-rest-beta", @@ -2534,7 +2534,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaTeamChannelMessageReaction", "ApiReferenceLink": null, @@ -2551,7 +2551,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaTeamChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -2568,7 +2568,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaTeamPrimaryChannelMessageReaction", "ApiReferenceLink": null, @@ -2585,7 +2585,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaTeamPrimaryChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -2602,7 +2602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaTeamworkDeletedTeamChannelMessageReaction", "ApiReferenceLink": null, @@ -2619,7 +2619,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -2636,7 +2636,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaUserAndBlockManagedApp", "ApiReferenceLink": null, @@ -2668,7 +2668,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaUserChatMessageReaction", "ApiReferenceLink": null, @@ -2702,7 +2702,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaUserChatMessageReplyReaction", "ApiReferenceLink": null, @@ -2719,7 +2719,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaUserManagedAppRegistrationByAzureAdDeviceId", "ApiReferenceLink": null, @@ -2753,7 +2753,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaUserManagedAppRegistrationByDeviceTag", "ApiReferenceLink": null, @@ -2770,7 +2770,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaUserManagedDevice", "ApiReferenceLink": null, @@ -2787,7 +2787,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaUserPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-beta", @@ -2821,7 +2821,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgBetaUserPresenceUserPreferredPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-beta", @@ -2853,7 +2853,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgChatMessageReaction", "ApiReferenceLink": null, @@ -2870,7 +2870,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgChatMessageReplyReaction", "ApiReferenceLink": null, @@ -2887,7 +2887,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgCommunicationPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0", @@ -2904,7 +2904,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgCommunicationPresenceUserPreferredPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0", @@ -2919,7 +2919,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgDeviceManagementManagedDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-wipe?view=graph-rest-1.0", @@ -2961,7 +2961,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgSecurityCaseEdiscoveryCaseSearchData", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-purgedata?view=graph-rest-1.0", @@ -2978,7 +2978,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgTeamChannelMessageReaction", "ApiReferenceLink": null, @@ -2995,7 +2995,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgTeamChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -3012,7 +3012,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgTeamPrimaryChannelMessageReaction", "ApiReferenceLink": null, @@ -3029,7 +3029,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgTeamPrimaryChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -3046,7 +3046,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgTeamworkDeletedTeamChannelMessageReaction", "ApiReferenceLink": null, @@ -3063,7 +3063,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgTeamworkDeletedTeamChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -3080,7 +3080,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgUserChatMessageReaction", "ApiReferenceLink": null, @@ -3114,7 +3114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgUserChatMessageReplyReaction", "ApiReferenceLink": null, @@ -3131,7 +3131,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgUserManagedDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-wipe?view=graph-rest-1.0", @@ -3148,7 +3148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgUserPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0", @@ -3182,7 +3182,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Clear-MgUserPresenceUserPreferredPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0", @@ -3214,7 +3214,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Close-MgBetaComplianceEdiscoveryCase", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-close?view=graph-rest-beta", @@ -3246,7 +3246,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Close-MgBetaSecurityCaseEdiscoveryCase", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-close?view=graph-rest-beta", @@ -3278,7 +3278,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Close-MgSecurityCaseEdiscoveryCase", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-close?view=graph-rest-1.0", @@ -3310,7 +3310,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Compare-MgBetaDeviceManagementIntent", "ApiReferenceLink": null, @@ -3342,7 +3342,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Compare-MgBetaDeviceManagementTemplate", "ApiReferenceLink": null, @@ -3374,7 +3374,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Compare-MgBetaDeviceManagementTemplateMigratableTo", "ApiReferenceLink": null, @@ -3406,7 +3406,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaDeviceManagementAndroidForWorkSettingSignup", "ApiReferenceLink": null, @@ -3421,7 +3421,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup", "ApiReferenceLink": null, @@ -3436,7 +3436,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaDirectoryImpactedResource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-complete?view=graph-rest-beta", @@ -3451,7 +3451,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaDirectoryRecommendation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-complete?view=graph-rest-beta", @@ -3466,7 +3466,7 @@ "OutputType": "IMicrosoftGraphRecommendation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaDirectoryRecommendationImpactedResource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-complete?view=graph-rest-beta", @@ -3481,7 +3481,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaTeamChannelMigration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-beta", @@ -3496,7 +3496,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaTeamMigration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-completemigration?view=graph-rest-beta", @@ -3511,7 +3511,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaTeamPrimaryChannelMigration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-beta", @@ -3526,7 +3526,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaTeamworkDeletedTeamChannelMigration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-beta", @@ -3541,7 +3541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaUserOutlookTask", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-beta", @@ -3556,7 +3556,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaUserOutlookTaskFolderTask", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-beta", @@ -3571,7 +3571,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgBetaUserOutlookTaskGroupTaskFolderTask", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-beta", @@ -3586,7 +3586,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgTeamChannelMigration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0", @@ -3601,7 +3601,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgTeamMigration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-completemigration?view=graph-rest-1.0", @@ -3616,7 +3616,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgTeamPrimaryChannelMigration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0", @@ -3631,7 +3631,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Complete-MgTeamworkDeletedTeamChannelMigration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0", @@ -3646,7 +3646,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgApplicationMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -3663,7 +3663,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgApplicationMemberObject", "ApiReferenceLink": null, @@ -3680,7 +3680,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaAdministrativeUnitMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -3697,7 +3697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaAdministrativeUnitMemberObject", "ApiReferenceLink": null, @@ -3714,7 +3714,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaApplicationMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -3731,7 +3731,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaApplicationMemberObject", "ApiReferenceLink": null, @@ -3748,7 +3748,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaAuditLogSignInCompromised", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-confirmcompromised?view=graph-rest-beta", @@ -3780,7 +3780,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaAuditLogSignInSafe", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-confirmsafe?view=graph-rest-beta", @@ -3812,7 +3812,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaContactMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -3918,7 +3918,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaContactMemberObject", "ApiReferenceLink": null, @@ -4032,7 +4032,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaContractMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -4049,7 +4049,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaContractMemberObject", "ApiReferenceLink": null, @@ -4066,7 +4066,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Confirm-MgBetaDeviceManagementWindowsEnrollmentAutoDiscovery", "ApiReferenceLink": null, @@ -4098,7 +4098,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDeviceMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -4204,7 +4204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDeviceMemberObject", "ApiReferenceLink": null, @@ -4318,7 +4318,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectoryDeletedItemMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -4335,7 +4335,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectoryDeletedItemMemberObject", "ApiReferenceLink": null, @@ -4352,7 +4352,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectoryObjectMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -4458,7 +4458,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectoryObjectMemberObject", "ApiReferenceLink": null, @@ -4572,7 +4572,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectoryRoleMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -4589,7 +4589,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectoryRoleMemberObject", "ApiReferenceLink": null, @@ -4606,7 +4606,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectoryRoleTemplateMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -4623,7 +4623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectoryRoleTemplateMemberObject", "ApiReferenceLink": null, @@ -4640,7 +4640,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectorySettingTemplateMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -4657,7 +4657,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDirectorySettingTemplateMemberObject", "ApiReferenceLink": null, @@ -4674,7 +4674,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-verify?view=graph-rest-beta", @@ -4689,7 +4689,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaGroupGrantedPermissionForApp", "ApiReferenceLink": null, @@ -4704,7 +4704,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaGroupMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -4810,7 +4810,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaGroupMemberObject", "ApiReferenceLink": null, @@ -4924,7 +4924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaGroupSiteInformationProtectionSignature", "ApiReferenceLink": null, @@ -4941,7 +4941,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaInformationProtectionSignature", "ApiReferenceLink": null, @@ -4956,7 +4956,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaOrganizationMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -4973,7 +4973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaOrganizationMemberObject", "ApiReferenceLink": null, @@ -4990,7 +4990,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaRiskyServicePrincipalCompromised", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-confirmcompromised?view=graph-rest-beta", @@ -5005,7 +5005,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaRiskyUserCompromised", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyusers-confirmcompromised?view=graph-rest-beta", @@ -5020,7 +5020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaServicePrincipalMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -5126,7 +5126,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaServicePrincipalMemberObject", "ApiReferenceLink": null, @@ -5240,7 +5240,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaSiteInformationProtectionSignature", "ApiReferenceLink": null, @@ -5257,7 +5257,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaTeamScheduleTimeCard", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-confirm?view=graph-rest-beta", @@ -5272,7 +5272,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaUserInformationProtectionSignature", "ApiReferenceLink": null, @@ -5289,7 +5289,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaUserMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", @@ -5395,7 +5395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgBetaUserMemberObject", "ApiReferenceLink": null, @@ -5509,7 +5509,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgContactMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -5615,7 +5615,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgContactMemberObject", "ApiReferenceLink": null, @@ -5729,7 +5729,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgContractMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -5746,7 +5746,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgContractMemberObject", "ApiReferenceLink": null, @@ -5763,7 +5763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Confirm-MgDeviceManagementWindowsEnrollmentAutoDiscovery", "ApiReferenceLink": null, @@ -5795,7 +5795,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDeviceMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -5901,7 +5901,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDeviceMemberObject", "ApiReferenceLink": null, @@ -6015,7 +6015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDirectoryDeletedItemMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -6032,7 +6032,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDirectoryDeletedItemMemberObject", "ApiReferenceLink": null, @@ -6049,7 +6049,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDirectoryObjectMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -6155,7 +6155,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDirectoryObjectMemberObject", "ApiReferenceLink": null, @@ -6269,7 +6269,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDirectoryRoleMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -6286,7 +6286,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDirectoryRoleMemberObject", "ApiReferenceLink": null, @@ -6303,7 +6303,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDirectoryRoleTemplateMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -6320,7 +6320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDirectoryRoleTemplateMemberObject", "ApiReferenceLink": null, @@ -6337,7 +6337,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-verify?view=graph-rest-1.0", @@ -6352,7 +6352,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgGroupGrantedPermissionForApp", "ApiReferenceLink": null, @@ -6367,7 +6367,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgGroupMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -6473,7 +6473,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgGroupMemberObject", "ApiReferenceLink": null, @@ -6587,7 +6587,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgGroupSettingTemplateMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -6604,7 +6604,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgGroupSettingTemplateMemberObject", "ApiReferenceLink": null, @@ -6621,7 +6621,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgOrganizationMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -6638,7 +6638,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgOrganizationMemberObject", "ApiReferenceLink": null, @@ -6655,7 +6655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgRiskyServicePrincipalCompromised", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-confirmcompromised?view=graph-rest-1.0", @@ -6670,7 +6670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgRiskyUserCompromised", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyuser-confirmcompromised?view=graph-rest-1.0", @@ -6685,7 +6685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgServicePrincipalMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -6791,7 +6791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgServicePrincipalMemberObject", "ApiReferenceLink": null, @@ -6905,7 +6905,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgUserMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", @@ -7011,7 +7011,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Confirm-MgUserMemberObject", "ApiReferenceLink": null, @@ -7125,7 +7125,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Connect-MgBetaDeviceManagementChromeOSOnboardingSetting", "ApiReferenceLink": null, @@ -7140,7 +7140,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Connect-MgBetaDeviceManagementZebraFotaConnector", "ApiReferenceLink": null, @@ -7186,7 +7186,7 @@ "OutputType": "IMicrosoftGraphMobileApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Convert-MgBetaUserExternalToInternalMemberUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-convertexternaltointernalmemberuser?view=graph-rest-beta", @@ -7220,7 +7220,7 @@ "OutputType": "IMicrosoftGraphConversionUserDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaDeviceManagementReusablePolicySetting", "ApiReferenceLink": null, @@ -7235,7 +7235,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementReusablePolicySetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", @@ -7277,7 +7277,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaDriveListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", @@ -7294,7 +7294,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", @@ -7311,7 +7311,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", @@ -7328,7 +7328,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaGroupDriveListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", @@ -7345,7 +7345,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", @@ -7362,7 +7362,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaGroupOnenoteNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-beta", @@ -7404,7 +7404,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaGroupOnenotePageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", @@ -7446,7 +7446,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaGroupOnenoteSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", @@ -7488,7 +7488,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaGroupOnenoteSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", @@ -7530,7 +7530,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaGroupSiteContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", @@ -7547,7 +7547,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaGroupSiteListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", @@ -7564,7 +7564,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaShareListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", @@ -7581,7 +7581,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", @@ -7623,7 +7623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", @@ -7640,7 +7640,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-beta", @@ -7682,7 +7682,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionPageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", @@ -7699,7 +7699,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", @@ -7716,7 +7716,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", @@ -7733,7 +7733,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionPageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", @@ -7750,7 +7750,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", @@ -7767,7 +7767,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", @@ -7784,7 +7784,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenotePageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", @@ -7826,7 +7826,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionPageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", @@ -7843,7 +7843,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", @@ -7860,7 +7860,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", @@ -7877,7 +7877,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionPageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", @@ -7894,7 +7894,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", @@ -7936,7 +7936,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", @@ -7978,7 +7978,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-clone?view=graph-rest-beta", @@ -8020,7 +8020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", @@ -8037,7 +8037,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserDriveListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", @@ -8054,7 +8054,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", @@ -8071,7 +8071,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserMailFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-beta", @@ -8088,7 +8088,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserMailFolderChildFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-beta", @@ -8105,7 +8105,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-beta", @@ -8122,7 +8122,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-beta", @@ -8139,7 +8139,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-beta", @@ -8156,7 +8156,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserOnenoteNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-beta", @@ -8198,7 +8198,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserOnenotePageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", @@ -8240,7 +8240,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserOnenoteSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", @@ -8282,7 +8282,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgBetaUserOnenoteSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", @@ -8324,7 +8324,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", @@ -8366,7 +8366,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgDriveListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", @@ -8383,7 +8383,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", @@ -8400,7 +8400,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", @@ -8417,7 +8417,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgGroupDriveListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", @@ -8434,7 +8434,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", @@ -8451,7 +8451,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgGroupOnenoteNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0", @@ -8493,7 +8493,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgGroupOnenotePageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", @@ -8535,7 +8535,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgGroupOnenoteSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", @@ -8577,7 +8577,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgGroupOnenoteSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", @@ -8619,7 +8619,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgGroupSiteContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", @@ -8636,7 +8636,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgGroupSiteListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", @@ -8653,7 +8653,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgShareListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", @@ -8670,7 +8670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", @@ -8712,7 +8712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", @@ -8729,7 +8729,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0", @@ -8771,7 +8771,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionPageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", @@ -8788,7 +8788,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", @@ -8805,7 +8805,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", @@ -8822,7 +8822,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionPageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", @@ -8839,7 +8839,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", @@ -8856,7 +8856,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", @@ -8873,7 +8873,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenotePageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", @@ -8915,7 +8915,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionGroupSectionPageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", @@ -8932,7 +8932,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionGroupSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", @@ -8949,7 +8949,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionGroupSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", @@ -8966,7 +8966,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionPageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", @@ -8983,7 +8983,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", @@ -9025,7 +9025,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", @@ -9067,7 +9067,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-clone?view=graph-rest-1.0", @@ -9109,7 +9109,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", @@ -9126,7 +9126,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserDriveListContentTypeToDefaultContentLocation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", @@ -9143,7 +9143,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", @@ -9160,7 +9160,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserMailFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0", @@ -9177,7 +9177,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserMailFolderChildFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0", @@ -9194,7 +9194,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0", @@ -9211,7 +9211,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0", @@ -9228,7 +9228,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0", @@ -9245,7 +9245,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserOnenoteNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0", @@ -9287,7 +9287,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserOnenotePageToSection", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", @@ -9329,7 +9329,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserOnenoteSectionToNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", @@ -9371,7 +9371,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Copy-MgUserOnenoteSectionToSectionGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", @@ -9413,7 +9413,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Deny-MgBetaDeviceManagementElevationRequest", "ApiReferenceLink": null, @@ -9430,7 +9430,7 @@ "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgBetaDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -9462,7 +9462,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgBetaDeviceManagementComanagedDeviceLostMode", "ApiReferenceLink": null, @@ -9477,7 +9477,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgBetaDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -9509,7 +9509,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgBetaDeviceManagementManagedDeviceLostMode", "ApiReferenceLink": null, @@ -9524,7 +9524,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgBetaUserAuthenticationMethodSmsSignIn", "ApiReferenceLink": null, @@ -9539,7 +9539,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgBetaUserManagedDevice", "ApiReferenceLink": null, @@ -9554,7 +9554,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgBetaUserManagedDeviceLostMode", "ApiReferenceLink": null, @@ -9569,7 +9569,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgDeviceManagementManagedDeviceLostMode", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-disablelostmode?view=graph-rest-1.0", @@ -9584,7 +9584,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgUserAuthenticationPhoneMethodSmsSignIn", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/phoneauthenticationmethod-disablesmssignin?view=graph-rest-1.0", @@ -9616,7 +9616,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disable-MgUserManagedDeviceLostMode", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-disablelostmode?view=graph-rest-1.0", @@ -9631,7 +9631,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disconnect-MgBetaDeviceManagementChromeOSOnboardingSetting", "ApiReferenceLink": null, @@ -9645,7 +9645,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disconnect-MgBetaDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -9677,7 +9677,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disconnect-MgBetaDeviceManagementZebraFotaConnector", "ApiReferenceLink": null, @@ -9691,7 +9691,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Disconnect-MgDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-disconnect?view=graph-rest-1.0", @@ -9723,7 +9723,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaDeviceManagementAndroidDeviceAdministratorEnrollment", "ApiReferenceLink": null, @@ -9754,7 +9754,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaDeviceManagementAssignmentFilter", "ApiReferenceLink": null, @@ -9769,7 +9769,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaDeviceManagementComanagedDeviceLostMode", "ApiReferenceLink": null, @@ -9786,7 +9786,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaDeviceManagementDeviceHealthScriptGlobalScript", "ApiReferenceLink": null, @@ -9817,7 +9817,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaDeviceManagementLegacyPcManagement", "ApiReferenceLink": null, @@ -9831,7 +9831,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaDeviceManagementManagedDeviceLostMode", "ApiReferenceLink": null, @@ -9848,7 +9848,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaDeviceManagementTenantAttachRbac", "ApiReferenceLink": null, @@ -9880,7 +9880,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaDeviceManagementUnlicensedAdminstrator", "ApiReferenceLink": null, @@ -9894,7 +9894,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaUserAuthenticationMethodSmsSignIn", "ApiReferenceLink": null, @@ -9909,7 +9909,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgBetaUserManagedDeviceLostMode", "ApiReferenceLink": null, @@ -9926,7 +9926,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Enable-MgUserAuthenticationPhoneMethodSmsSignIn", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/phoneauthenticationmethod-enablesmssignin?view=graph-rest-1.0", @@ -9958,7 +9958,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaComplianceEdiscoveryCaseReviewSet", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewset-export?view=graph-rest-beta", @@ -9992,7 +9992,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Export-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileMobileConfig", "ApiReferenceLink": null, @@ -10024,7 +10024,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaDirectoryInboundSharedUserProfilePersonalData", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/inboundshareduserprofile-exportpersonaldata?view=graph-rest-beta", @@ -10058,7 +10058,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Export-MgBetaPrivilegedAccessResourceRoleAssignment", "ApiReferenceLink": null, @@ -10073,7 +10073,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Export-MgBetaPrivilegedAccessRoleAssignment", "ApiReferenceLink": null, @@ -10088,7 +10088,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaReportPartnerBillingReconciliationBilled", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedreconciliation-export?view=graph-rest-beta", @@ -10103,7 +10103,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaReportPartnerBillingUsageBilled", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedusage-export?view=graph-rest-beta", @@ -10118,7 +10118,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaReportPartnerBillingUsageUnbilled", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-unbilledusage-export?view=graph-rest-beta", @@ -10133,7 +10133,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-export?view=graph-rest-beta", @@ -10167,7 +10167,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-export?view=graph-rest-beta", @@ -10201,7 +10201,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchReport", "ApiReferenceLink": null, @@ -10235,7 +10235,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchResult", "ApiReferenceLink": null, @@ -10269,7 +10269,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Export-MgBetaUserDeviceAndAppManagementData", "ApiReferenceLink": null, @@ -10319,7 +10319,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgBetaUserPersonalData", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-exportpersonaldata?view=graph-rest-beta", @@ -10336,7 +10336,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgReportPartnerBillingReconciliationBilled", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedreconciliation-export?view=graph-rest-1.0", @@ -10351,7 +10351,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgReportPartnerBillingUsageBilled", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedusage-export?view=graph-rest-1.0", @@ -10366,7 +10366,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgReportPartnerBillingUsageUnbilled", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-unbilledusage-export?view=graph-rest-1.0", @@ -10381,7 +10381,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-export?view=graph-rest-1.0", @@ -10415,7 +10415,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-export?view=graph-rest-1.0", @@ -10449,7 +10449,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Export-MgUserDeviceAndAppManagementData", "ApiReferenceLink": null, @@ -10499,7 +10499,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Export-MgUserPersonalData", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-exportpersonaldata?view=graph-rest-1.0", @@ -10516,7 +10516,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0", @@ -10531,7 +10531,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0", @@ -10546,7 +10546,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgBetaApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta", @@ -10561,7 +10561,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgBetaApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta", @@ -10576,7 +10576,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgBetaDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -10591,7 +10591,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgBetaDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -10661,7 +10661,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta", @@ -10693,7 +10693,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta", @@ -10708,7 +10708,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgBetaUserManagedDevice", "ApiReferenceLink": null, @@ -10723,7 +10723,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgBetaUserMeetingTime", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findmeetingtimes?view=graph-rest-beta", @@ -10757,7 +10757,7 @@ "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Find-MgBetaUserRoom", "ApiReferenceLink": null, @@ -10791,7 +10791,7 @@ "OutputType": "IMicrosoftGraphEmailAddress" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Find-MgBetaUserRoomList", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findroomlists?view=graph-rest-beta", @@ -10853,7 +10853,7 @@ "OutputType": "IMicrosoftGraphWindowsUpdatesProduct" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgDeviceManagementManagedDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-locatedevice?view=graph-rest-1.0", @@ -10868,7 +10868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0", @@ -10900,7 +10900,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0", @@ -10915,7 +10915,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgUserManagedDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-locatedevice?view=graph-rest-1.0", @@ -10930,7 +10930,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Find-MgUserMeetingTime", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findmeetingtimes?view=graph-rest-1.0", @@ -11055,7 +11055,7 @@ "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListCount", "ApiReferenceLink": null, @@ -11149,7 +11149,7 @@ "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount", "ApiReferenceLink": null, @@ -11244,7 +11244,7 @@ "OutputType": "IMicrosoftGraphBrowserSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount", "ApiReferenceLink": null, @@ -11353,7 +11353,7 @@ "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminPeopleProfileCardPropertyCount", "ApiReferenceLink": null, @@ -11518,7 +11518,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementAcceptanceCount", "ApiReferenceLink": null, @@ -11579,7 +11579,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileCount", "ApiReferenceLink": null, @@ -11623,7 +11623,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileLocalizationCount", "ApiReferenceLink": null, @@ -11667,7 +11667,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileLocalizationVersionCount", "ApiReferenceLink": null, @@ -11711,7 +11711,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileVersionCount", "ApiReferenceLink": null, @@ -12113,7 +12113,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAppCatalogTeamAppCount", "ApiReferenceLink": null, @@ -12237,7 +12237,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAppCatalogTeamAppDefinitionCount", "ApiReferenceLink": null, @@ -12385,7 +12385,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationAppManagementPolicyByRef", "ApiReferenceLink": null, @@ -12399,7 +12399,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationAppManagementPolicyCount", "ApiReferenceLink": null, @@ -12478,7 +12478,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgApplicationById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -12557,7 +12557,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationCount", "ApiReferenceLink": null, @@ -12793,7 +12793,7 @@ "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationExtensionPropertyCount", "ApiReferenceLink": null, @@ -12960,7 +12960,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationFederatedIdentityCredentialCount", "ApiReferenceLink": null, @@ -13029,7 +13029,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationHomeRealmDiscoveryPolicyCount", "ApiReferenceLink": null, @@ -13044,7 +13044,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationLogo", "ApiReferenceLink": null, @@ -13059,7 +13059,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgApplicationMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -13076,7 +13076,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgApplicationMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -13264,7 +13264,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerByRef", "ApiReferenceLink": null, @@ -13319,7 +13319,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerCount", "ApiReferenceLink": null, @@ -13375,7 +13375,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerCountAsAppRoleAssignment", "ApiReferenceLink": null, @@ -13390,7 +13390,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerCountAsEndpoint", "ApiReferenceLink": null, @@ -13405,7 +13405,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerCountAsServicePrincipal", "ApiReferenceLink": null, @@ -13420,7 +13420,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerCountAsUser", "ApiReferenceLink": null, @@ -13450,7 +13450,7 @@ "OutputType": "IMicrosoftGraphSynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgApplicationSynchronizationAccessToken", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0", @@ -13528,7 +13528,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobBulkUploadContent", "ApiReferenceLink": null, @@ -13543,7 +13543,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobCount", "ApiReferenceLink": null, @@ -13602,7 +13602,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobSchemaDirectoryCount", "ApiReferenceLink": null, @@ -13617,7 +13617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationSecretCount", "ApiReferenceLink": null, @@ -13711,7 +13711,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplateCount", "ApiReferenceLink": null, @@ -13820,7 +13820,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount", "ApiReferenceLink": null, @@ -13864,7 +13864,7 @@ "OutputType": "IMicrosoftGraphApplicationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationTemplateCount", "ApiReferenceLink": null, @@ -13933,7 +13933,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationTokenIssuancePolicyByRef", "ApiReferenceLink": null, @@ -13988,7 +13988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationTokenIssuancePolicyCount", "ApiReferenceLink": null, @@ -14099,7 +14099,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationTokenLifetimePolicyByRef", "ApiReferenceLink": null, @@ -14154,7 +14154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationTokenLifetimePolicyCount", "ApiReferenceLink": null, @@ -14273,7 +14273,7 @@ "OutputType": "IMicrosoftGraphDirectoryAudit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAuditLogDirectoryAuditCount", "ApiReferenceLink": null, @@ -14350,7 +14350,7 @@ "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAuditLogProvisioningCount", "ApiReferenceLink": null, @@ -14444,7 +14444,7 @@ "OutputType": "IMicrosoftGraphSignIn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAuditLogSignInCount", "ApiReferenceLink": null, @@ -14554,7 +14554,7 @@ "OutputType": "IMicrosoftGraphAccessReview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewCount", "ApiReferenceLink": null, @@ -14647,7 +14647,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewDecisionCount", "ApiReferenceLink": null, @@ -14716,7 +14716,7 @@ "OutputType": "IMicrosoftGraphAccessReview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceCount", "ApiReferenceLink": null, @@ -14760,7 +14760,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceDecisionCount", "ApiReferenceLink": null, @@ -14804,7 +14804,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceMyDecisionCount", "ApiReferenceLink": null, @@ -14848,7 +14848,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceReviewerCount", "ApiReferenceLink": null, @@ -14917,7 +14917,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewMyDecisionCount", "ApiReferenceLink": null, @@ -15011,7 +15011,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewReviewerCount", "ApiReferenceLink": null, @@ -15142,7 +15142,7 @@ "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListCount", "ApiReferenceLink": null, @@ -15236,7 +15236,7 @@ "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookieCount", "ApiReferenceLink": null, @@ -15331,7 +15331,7 @@ "OutputType": "IMicrosoftGraphBrowserSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSiteCount", "ApiReferenceLink": null, @@ -15458,7 +15458,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaAdministrativeUnitById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -15473,7 +15473,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitCount", "ApiReferenceLink": null, @@ -15596,7 +15596,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitExtensionCount", "ApiReferenceLink": null, @@ -16030,7 +16030,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberByRef", "ApiReferenceLink": null, @@ -16077,7 +16077,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberCount", "ApiReferenceLink": null, @@ -16125,7 +16125,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberCountAsApplication", "ApiReferenceLink": null, @@ -16173,7 +16173,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberCountAsDevice", "ApiReferenceLink": null, @@ -16221,7 +16221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberCountAsGroup", "ApiReferenceLink": null, @@ -16269,7 +16269,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberCountAsOrgContact", "ApiReferenceLink": null, @@ -16317,7 +16317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberCountAsServicePrincipal", "ApiReferenceLink": null, @@ -16365,7 +16365,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberCountAsUser", "ApiReferenceLink": null, @@ -16413,7 +16413,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaAdministrativeUnitMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -16430,7 +16430,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaAdministrativeUnitMemberObject", "ApiReferenceLink": null, @@ -16542,7 +16542,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitScopedRoleMemberCount", "ApiReferenceLink": null, @@ -16590,7 +16590,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaAdministrativeUnitUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -16713,7 +16713,7 @@ "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminPeopleProfileCardPropertyCount", "ApiReferenceLink": null, @@ -16909,7 +16909,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementAcceptanceCount", "ApiReferenceLink": null, @@ -16970,7 +16970,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileCount", "ApiReferenceLink": null, @@ -17014,7 +17014,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalizationCount", "ApiReferenceLink": null, @@ -17058,7 +17058,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalizationVersionCount", "ApiReferenceLink": null, @@ -17102,7 +17102,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileVersionCount", "ApiReferenceLink": null, @@ -17534,7 +17534,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppCount", "ApiReferenceLink": null, @@ -17740,7 +17740,7 @@ "OutputType": "IMicrosoftGraphTeamworkHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionCount", "ApiReferenceLink": null, @@ -17784,7 +17784,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCardCount", "ApiReferenceLink": null, @@ -18014,7 +18014,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationAppManagementPolicyByRef", "ApiReferenceLink": null, @@ -18028,7 +18028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationAppManagementPolicyCount", "ApiReferenceLink": null, @@ -18107,7 +18107,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaApplicationById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -18201,7 +18201,7 @@ "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationConnectorGroupByRef", "ApiReferenceLink": null, @@ -18216,7 +18216,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationCount", "ApiReferenceLink": null, @@ -18452,7 +18452,7 @@ "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationExtensionPropertyCount", "ApiReferenceLink": null, @@ -18619,7 +18619,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationFederatedIdentityCredentialCount", "ApiReferenceLink": null, @@ -18688,7 +18688,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicyCount", "ApiReferenceLink": null, @@ -18703,7 +18703,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationLogo", "ApiReferenceLink": null, @@ -18718,7 +18718,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaApplicationMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -18735,7 +18735,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaApplicationMemberObject", "ApiReferenceLink": null, @@ -18894,7 +18894,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerByRef", "ApiReferenceLink": null, @@ -18949,7 +18949,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerCount", "ApiReferenceLink": null, @@ -19005,7 +19005,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerCountAsEndpoint", "ApiReferenceLink": null, @@ -19020,7 +19020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerCountAsServicePrincipal", "ApiReferenceLink": null, @@ -19035,7 +19035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerCountAsUser", "ApiReferenceLink": null, @@ -19065,7 +19065,7 @@ "OutputType": "IMicrosoftGraphSynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaApplicationSynchronizationAccessToken", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-beta", @@ -19143,7 +19143,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobBulkUploadContent", "ApiReferenceLink": null, @@ -19158,7 +19158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobCount", "ApiReferenceLink": null, @@ -19217,7 +19217,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectoryCount", "ApiReferenceLink": null, @@ -19232,7 +19232,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationSecretCount", "ApiReferenceLink": null, @@ -19326,7 +19326,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplateCount", "ApiReferenceLink": null, @@ -19435,7 +19435,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectoryCount", "ApiReferenceLink": null, @@ -19479,7 +19479,7 @@ "OutputType": "IMicrosoftGraphApplicationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationTemplateCount", "ApiReferenceLink": null, @@ -19548,7 +19548,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationTokenIssuancePolicyByRef", "ApiReferenceLink": null, @@ -19603,7 +19603,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationTokenIssuancePolicyCount", "ApiReferenceLink": null, @@ -19714,7 +19714,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationTokenLifetimePolicyByRef", "ApiReferenceLink": null, @@ -19769,7 +19769,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationTokenLifetimePolicyCount", "ApiReferenceLink": null, @@ -19825,7 +19825,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaApplicationUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -19869,7 +19869,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeAudit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAuditCount", "ApiReferenceLink": null, @@ -19946,7 +19946,7 @@ "OutputType": "IMicrosoftGraphDirectoryAudit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogDirectoryAuditCount", "ApiReferenceLink": null, @@ -20006,7 +20006,7 @@ "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogDirectoryProvisioningCount", "ApiReferenceLink": null, @@ -20066,7 +20066,7 @@ "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogProvisioningCount", "ApiReferenceLink": null, @@ -20160,7 +20160,7 @@ "OutputType": "IMicrosoftGraphSignIn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogSignInCount", "ApiReferenceLink": null, @@ -20387,7 +20387,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessAppointmentCount", "ApiReferenceLink": null, @@ -20502,7 +20502,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCalendarViewCount", "ApiReferenceLink": null, @@ -20552,7 +20552,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCount", "ApiReferenceLink": null, @@ -20698,7 +20698,7 @@ "OutputType": "IMicrosoftGraphBookingCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCustomerCount", "ApiReferenceLink": null, @@ -20846,7 +20846,7 @@ "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCustomQuestionCount", "ApiReferenceLink": null, @@ -20994,7 +20994,7 @@ "OutputType": "IMicrosoftGraphBookingService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessServiceCount", "ApiReferenceLink": null, @@ -21044,7 +21044,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaBookingBusinessStaffAvailability", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-beta", @@ -21200,7 +21200,7 @@ "OutputType": "IMicrosoftGraphBookingStaffMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessStaffMemberCount", "ApiReferenceLink": null, @@ -21348,7 +21348,7 @@ "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingCurrencyCount", "ApiReferenceLink": null, @@ -21450,7 +21450,7 @@ "OutputType": "IMicrosoftGraphBusinessFlowTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessFlowTemplateCount", "ApiReferenceLink": null, @@ -21632,7 +21632,7 @@ "OutputType": "IMicrosoftGraphBusinessScenario" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioCount", "ApiReferenceLink": null, @@ -21727,7 +21727,7 @@ "OutputType": "IMicrosoftGraphBusinessScenarioPlanner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaBusinessScenarioPlannerPlan", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessscenarioplanner-getplan?view=graph-rest-beta", @@ -21904,7 +21904,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalizationCount", "ApiReferenceLink": null, @@ -22093,7 +22093,7 @@ "OutputType": "IMicrosoftGraphPlannerTaskConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskCount", "ApiReferenceLink": null, @@ -22298,7 +22298,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatCount", "ApiReferenceLink": null, @@ -22584,7 +22584,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatInstalledAppCount", "ApiReferenceLink": null, @@ -23012,7 +23012,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMemberCount", "ApiReferenceLink": null, @@ -23244,7 +23244,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageCount", "ApiReferenceLink": null, @@ -23509,7 +23509,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageHostedContentCount", "ApiReferenceLink": null, @@ -23610,7 +23610,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageReplyCount", "ApiReferenceLink": null, @@ -23671,7 +23671,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -23861,7 +23861,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatOperationCount", "ApiReferenceLink": null, @@ -24075,7 +24075,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatPermissionGrantCount", "ApiReferenceLink": null, @@ -24259,7 +24259,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatPinnedMessageCount", "ApiReferenceLink": null, @@ -24537,7 +24537,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatTabCount", "ApiReferenceLink": null, @@ -24711,7 +24711,7 @@ "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallAudioRoutingGroupCount", "ApiReferenceLink": null, @@ -24838,7 +24838,7 @@ "OutputType": "IMicrosoftGraphContentSharingSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallContentSharingSessionCount", "ApiReferenceLink": null, @@ -24886,7 +24886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallCount", "ApiReferenceLink": null, @@ -24929,7 +24929,7 @@ "OutputType": "IMicrosoftGraphCommsOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallOperationCount", "ApiReferenceLink": null, @@ -25007,7 +25007,7 @@ "OutputType": "IMicrosoftGraphParticipant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallParticipantCount", "ApiReferenceLink": null, @@ -25054,7 +25054,7 @@ "OutputType": "IMicrosoftGraphCallRecordsCallRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordCount", "ApiReferenceLink": null, @@ -25083,7 +25083,7 @@ "OutputType": "IMicrosoftGraphCallRecordsOrganizer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordParticipant", "ApiReferenceLink": null, @@ -25127,7 +25127,7 @@ "OutputType": "IMicrosoftGraphCallRecordsParticipant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordPstnBlockedUserLog", "ApiReferenceLink": null, @@ -25142,7 +25142,7 @@ "OutputType": "IMicrosoftGraphCallRecordsPstnBlockedUsersLogRow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordPstnOnlineMeetingDialoutReport", "ApiReferenceLink": null, @@ -25186,7 +25186,7 @@ "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSessionCount", "ApiReferenceLink": null, @@ -25201,7 +25201,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSessionSegmentCount", "ApiReferenceLink": null, @@ -25216,7 +25216,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSmLog", "ApiReferenceLink": null, @@ -25295,7 +25295,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAlternativeRecording", "ApiReferenceLink": null, @@ -25373,7 +25373,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount", "ApiReferenceLink": null, @@ -25390,7 +25390,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportCount", "ApiReferenceLink": null, @@ -25405,7 +25405,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendeeReport", "ApiReferenceLink": null, @@ -25420,7 +25420,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingBroadcastRecording", "ApiReferenceLink": null, @@ -25483,7 +25483,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingCount", "ApiReferenceLink": null, @@ -25530,7 +25530,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingJoinWebUrlVirtualAppointmentJoinWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta", @@ -25545,7 +25545,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -25577,7 +25577,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingContent", "ApiReferenceLink": null, @@ -25592,7 +25592,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingCount", "ApiReferenceLink": null, @@ -25666,7 +25666,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestionCount", "ApiReferenceLink": null, @@ -25710,7 +25710,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrantCount", "ApiReferenceLink": null, @@ -25755,7 +25755,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptContent", "ApiReferenceLink": null, @@ -25770,7 +25770,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptCount", "ApiReferenceLink": null, @@ -25800,7 +25800,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent", "ApiReferenceLink": null, @@ -25815,7 +25815,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta", @@ -25884,7 +25884,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaCommunicationPresenceByUserId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-beta", @@ -25916,7 +25916,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationPresenceCount", "ApiReferenceLink": null, @@ -26046,7 +26046,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCount", "ApiReferenceLink": null, @@ -26140,7 +26140,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianCount", "ApiReferenceLink": null, @@ -26250,7 +26250,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceCount", "ApiReferenceLink": null, @@ -26360,7 +26360,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceCount", "ApiReferenceLink": null, @@ -26421,7 +26421,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -26499,7 +26499,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSourceCount", "ApiReferenceLink": null, @@ -26594,7 +26594,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryLegalHold" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldCount", "ApiReferenceLink": null, @@ -26672,7 +26672,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceCount", "ApiReferenceLink": null, @@ -26748,7 +26748,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceCount", "ApiReferenceLink": null, @@ -26792,7 +26792,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -26853,7 +26853,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSourceCount", "ApiReferenceLink": null, @@ -26948,7 +26948,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceCount", "ApiReferenceLink": null, @@ -27117,7 +27117,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationCount", "ApiReferenceLink": null, @@ -27149,7 +27149,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationCountAsCaseExportOperation", "ApiReferenceLink": null, @@ -27227,7 +27227,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetCount", "ApiReferenceLink": null, @@ -27322,7 +27322,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQueryCount", "ApiReferenceLink": null, @@ -27495,7 +27495,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSourceCount", "ApiReferenceLink": null, @@ -27559,7 +27559,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryAddToReviewSetOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCount", "ApiReferenceLink": null, @@ -27637,7 +27637,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSourceCount", "ApiReferenceLink": null, @@ -27747,7 +27747,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceCount", "ApiReferenceLink": null, @@ -27888,7 +27888,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTagCount", "ApiReferenceLink": null, @@ -27920,7 +27920,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseTagCount", "ApiReferenceLink": null, @@ -28046,7 +28046,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaContactById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -28061,7 +28061,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactCount", "ApiReferenceLink": null, @@ -28259,7 +28259,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDirectReportCount", "ApiReferenceLink": null, @@ -28307,7 +28307,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDirectReportCountAsOrgContact", "ApiReferenceLink": null, @@ -28322,7 +28322,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDirectReportCountAsUser", "ApiReferenceLink": null, @@ -28385,7 +28385,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaContactMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -28483,7 +28483,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaContactMemberObject", "ApiReferenceLink": null, @@ -28717,7 +28717,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactMemberOfCount", "ApiReferenceLink": null, @@ -28765,7 +28765,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -28780,7 +28780,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -28809,7 +28809,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -28936,7 +28936,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -28976,7 +28976,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -28991,7 +28991,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -29035,7 +29035,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveReportCount", "ApiReferenceLink": null, @@ -29050,7 +29050,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaContactUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -29128,7 +29128,7 @@ "OutputType": "IMicrosoftGraphContract" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaContractById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -29143,7 +29143,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContractCount", "ApiReferenceLink": null, @@ -29205,7 +29205,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaContractMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -29222,7 +29222,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaContractMemberObject", "ApiReferenceLink": null, @@ -29239,7 +29239,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaContractUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -29300,7 +29300,7 @@ "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDataPolicyOperationCount", "ApiReferenceLink": null, @@ -43249,7 +43249,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -43293,7 +43293,7 @@ "OutputType": "IMicrosoftGraphCommand" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceCommandCount", "ApiReferenceLink": null, @@ -43323,7 +43323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceCount", "ApiReferenceLink": null, @@ -43413,7 +43413,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceExtensionCount", "ApiReferenceLink": null, @@ -43617,7 +43617,7 @@ "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingStateCount", "ApiReferenceLink": null, @@ -43711,7 +43711,7 @@ "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfileCount", "ApiReferenceLink": null, @@ -43805,7 +43805,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchemaCount", "ApiReferenceLink": null, @@ -43899,7 +43899,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfileCount", "ApiReferenceLink": null, @@ -44055,7 +44055,7 @@ "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchemaCount", "ApiReferenceLink": null, @@ -44259,7 +44259,7 @@ "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignmentCount", "ApiReferenceLink": null, @@ -44291,7 +44291,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileCount", "ApiReferenceLink": null, @@ -44322,7 +44322,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignedRoleDetail", "ApiReferenceLink": null, @@ -44432,7 +44432,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilterCount", "ApiReferenceLink": null, @@ -44463,7 +44463,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilterPlatformSupportedProperty", "ApiReferenceLink": null, @@ -44495,7 +44495,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilterState", "ApiReferenceLink": null, @@ -44526,7 +44526,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementAssignmentFilterStatusDetail", "ApiReferenceLink": null, @@ -44558,7 +44558,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilterSupportedProperty", "ApiReferenceLink": null, @@ -44653,7 +44653,7 @@ "OutputType": "IMicrosoftGraphAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEventAuditActivityType", "ApiReferenceLink": null, @@ -44685,7 +44685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEventAuditCategory", "ApiReferenceLink": null, @@ -44716,7 +44716,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEventCount", "ApiReferenceLink": null, @@ -44810,7 +44810,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEventCount", "ApiReferenceLink": null, @@ -44904,7 +44904,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetailCount", "ApiReferenceLink": null, @@ -44999,7 +44999,7 @@ "OutputType": "IMicrosoftGraphCartToClassAssociation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCartToClassAssociationCount", "ApiReferenceLink": null, @@ -45093,7 +45093,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategoryCount", "ApiReferenceLink": null, @@ -45187,7 +45187,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategorySettingDefinitionCount", "ApiReferenceLink": null, @@ -45219,7 +45219,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementCertificateConnectorDetailHealthMetric", "ApiReferenceLink": null, @@ -45253,7 +45253,7 @@ "OutputType": "IMicrosoftGraphKeyLongValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementCertificateConnectorDetailHealthMetricTimeSeries", "ApiReferenceLink": null, @@ -45411,7 +45411,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetailCount", "ApiReferenceLink": null, @@ -45441,7 +45441,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCloudPcRemoteActionResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta", @@ -45456,7 +45456,7 @@ "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCloudPcReviewStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta", @@ -45500,7 +45500,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyStateCount", "ApiReferenceLink": null, @@ -45544,7 +45544,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationStateCount", "ApiReferenceLink": null, @@ -45559,7 +45559,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCount", "ApiReferenceLink": null, @@ -45635,7 +45635,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedAppCount", "ApiReferenceLink": null, @@ -45650,7 +45650,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceFileVaultKey", "ApiReferenceLink": null, @@ -45727,7 +45727,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptStateCount", "ApiReferenceLink": null, @@ -45771,7 +45771,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequestCount", "ApiReferenceLink": null, @@ -45815,7 +45815,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationStateCount", "ApiReferenceLink": null, @@ -45830,7 +45830,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceNonCompliantSetting", "ApiReferenceLink": null, @@ -45874,7 +45874,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateCount", "ApiReferenceLink": null, @@ -45918,7 +45918,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingStateCount", "ApiReferenceLink": null, @@ -45933,7 +45933,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSummary", "ApiReferenceLink": null, @@ -46038,7 +46038,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareStateCount", "ApiReferenceLink": null, @@ -46148,7 +46148,7 @@ "OutputType": "IMicrosoftGraphComanagementEligibleDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceCount", "ApiReferenceLink": null, @@ -46195,7 +46195,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceSummary", "ApiReferenceLink": null, @@ -46337,7 +46337,7 @@ "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComplianceManagementPartnerCount", "ApiReferenceLink": null, @@ -46510,7 +46510,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignmentCount", "ApiReferenceLink": null, @@ -46542,7 +46542,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyCount", "ApiReferenceLink": null, @@ -46636,7 +46636,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleCount", "ApiReferenceLink": null, @@ -46731,7 +46731,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount", "ApiReferenceLink": null, @@ -46826,7 +46826,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingCount", "ApiReferenceLink": null, @@ -46887,7 +46887,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinitionCount", "ApiReferenceLink": null, @@ -46965,7 +46965,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComplianceSettingCount", "ApiReferenceLink": null, @@ -47043,7 +47043,7 @@ "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigManagerCollectionPolicySummary", "ApiReferenceLink": null, @@ -47217,7 +47217,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignmentCount", "ApiReferenceLink": null, @@ -47249,7 +47249,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyCount", "ApiReferenceLink": null, @@ -47280,7 +47280,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyJust", "ApiReferenceLink": null, @@ -47295,7 +47295,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationJustInTimeAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyLatestUpgradeDefaultBaselinePolicy", "ApiReferenceLink": null, @@ -47373,7 +47373,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingCount", "ApiReferenceLink": null, @@ -47468,7 +47468,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinitionCount", "ApiReferenceLink": null, @@ -47563,7 +47563,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateCount", "ApiReferenceLink": null, @@ -47657,7 +47657,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinitionCount", "ApiReferenceLink": null, @@ -47752,7 +47752,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplateCount", "ApiReferenceLink": null, @@ -47847,7 +47847,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationSettingCount", "ApiReferenceLink": null, @@ -47957,7 +47957,7 @@ "OutputType": "IMicrosoftGraphDataSharingConsent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDataSharingConsentCount", "ApiReferenceLink": null, @@ -48059,7 +48059,7 @@ "OutputType": "IMicrosoftGraphDepOnboardingSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingCount", "ApiReferenceLink": null, @@ -48154,7 +48154,7 @@ "OutputType": "IMicrosoftGraphDepMacOSEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEncryptionPublicKey", "ApiReferenceLink": null, @@ -48249,7 +48249,7 @@ "OutputType": "IMicrosoftGraphEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileCount", "ApiReferenceLink": null, @@ -48281,7 +48281,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingExpiringVppTokenCount", "ApiReferenceLink": null, @@ -48376,7 +48376,7 @@ "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentityCount", "ApiReferenceLink": null, @@ -48437,7 +48437,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDerivedCredentialCount", "ApiReferenceLink": null, @@ -48546,7 +48546,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDetectedAppCount", "ApiReferenceLink": null, @@ -48656,7 +48656,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDeviceCount", "ApiReferenceLink": null, @@ -48783,7 +48783,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCategoryCount", "ApiReferenceLink": null, @@ -48956,7 +48956,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignmentCount", "ApiReferenceLink": null, @@ -48988,7 +48988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyCount", "ApiReferenceLink": null, @@ -49019,7 +49019,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceScheduledToRetire", "ApiReferenceLink": null, @@ -49113,7 +49113,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount", "ApiReferenceLink": null, @@ -49239,7 +49239,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusCount", "ApiReferenceLink": null, @@ -49303,7 +49303,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyNoncompliantDeviceToRetire", "ApiReferenceLink": null, @@ -49398,7 +49398,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount", "ApiReferenceLink": null, @@ -49493,7 +49493,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount", "ApiReferenceLink": null, @@ -49588,7 +49588,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryCount", "ApiReferenceLink": null, @@ -49682,7 +49682,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount", "ApiReferenceLink": null, @@ -49777,7 +49777,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusCount", "ApiReferenceLink": null, @@ -49904,7 +49904,7 @@ "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAllManagedDeviceCertificateStateCount", "ApiReferenceLink": null, @@ -49998,7 +49998,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignmentCount", "ApiReferenceLink": null, @@ -50093,7 +50093,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummaryCount", "ApiReferenceLink": null, @@ -50124,7 +50124,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationCount", "ApiReferenceLink": null, @@ -50218,7 +50218,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount", "ApiReferenceLink": null, @@ -50344,7 +50344,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusCount", "ApiReferenceLink": null, @@ -50471,7 +50471,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignmentCount", "ApiReferenceLink": null, @@ -50535,7 +50535,7 @@ "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationIoAvailableUpdateVersion", "ApiReferenceLink": null, @@ -50629,7 +50629,7 @@ "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationOmaSettingPlainTextValue", "ApiReferenceLink": null, @@ -50690,7 +50690,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationProfileCount", "ApiReferenceLink": null, @@ -50767,7 +50767,7 @@ "OutputType": "IMicrosoftGraphRestrictedAppsViolation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolationCount", "ApiReferenceLink": null, @@ -50798,7 +50798,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationTargetedUserAndDevice", "ApiReferenceLink": null, @@ -50907,7 +50907,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusCount", "ApiReferenceLink": null, @@ -51161,7 +51161,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignmentCount", "ApiReferenceLink": null, @@ -51209,7 +51209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationCount", "ApiReferenceLink": null, @@ -51382,7 +51382,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignmentCount", "ApiReferenceLink": null, @@ -51414,7 +51414,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptCount", "ApiReferenceLink": null, @@ -51508,7 +51508,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateCount", "ApiReferenceLink": null, @@ -51588,7 +51588,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptGlobalScriptHighestAvailableVersion", "ApiReferenceLink": null, @@ -51620,7 +51620,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationHistory", "ApiReferenceLink": null, @@ -51652,7 +51652,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationSummary", "ApiReferenceLink": null, @@ -51905,7 +51905,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignmentCount", "ApiReferenceLink": null, @@ -51953,7 +51953,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptCount", "ApiReferenceLink": null, @@ -52095,7 +52095,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunStateCount", "ApiReferenceLink": null, @@ -52253,7 +52253,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignmentCount", "ApiReferenceLink": null, @@ -52444,7 +52444,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateCount", "ApiReferenceLink": null, @@ -52584,7 +52584,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDomainJoinConnectorCount", "ApiReferenceLink": null, @@ -52615,7 +52615,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEffectivePermission", "ApiReferenceLink": null, @@ -52648,7 +52648,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementElevationRequest", "ApiReferenceLink": null, @@ -52789,7 +52789,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignmentCount", "ApiReferenceLink": null, @@ -52821,7 +52821,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolCount", "ApiReferenceLink": null, @@ -52915,7 +52915,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceStateCount", "ApiReferenceLink": null, @@ -53042,7 +53042,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeConnectorCount", "ApiReferenceLink": null, @@ -53168,7 +53168,7 @@ "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicyCount", "ApiReferenceLink": null, @@ -53274,7 +53274,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChildCount", "ApiReferenceLink": null, @@ -53289,7 +53289,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryCount", "ApiReferenceLink": null, @@ -53349,7 +53349,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinitionCount", "ApiReferenceLink": null, @@ -53520,7 +53520,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignmentCount", "ApiReferenceLink": null, @@ -53552,7 +53552,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationCount", "ApiReferenceLink": null, @@ -53646,7 +53646,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValueCount", "ApiReferenceLink": null, @@ -53851,7 +53851,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionCount", "ApiReferenceLink": null, @@ -53930,7 +53930,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileCount", "ApiReferenceLink": null, @@ -53973,7 +53973,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinitionCount", "ApiReferenceLink": null, @@ -54062,7 +54062,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentationCount", "ApiReferenceLink": null, @@ -54166,7 +54166,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentationCount", "ApiReferenceLink": null, @@ -54225,7 +54225,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentationCount", "ApiReferenceLink": null, @@ -54374,7 +54374,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentationCount", "ApiReferenceLink": null, @@ -54433,7 +54433,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentationCount", "ApiReferenceLink": null, @@ -54526,7 +54526,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportCount", "ApiReferenceLink": null, @@ -54620,7 +54620,7 @@ "OutputType": "IMicrosoftGraphGroupPolicySettingMapping" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMappingCount", "ApiReferenceLink": null, @@ -54715,7 +54715,7 @@ "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtensionCount", "ApiReferenceLink": null, @@ -54810,7 +54810,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyObjectFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFileCount", "ApiReferenceLink": null, @@ -54904,7 +54904,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileCount", "ApiReferenceLink": null, @@ -54964,7 +54964,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinitionCount", "ApiReferenceLink": null, @@ -55008,7 +55008,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperationCount", "ApiReferenceLink": null, @@ -55086,7 +55086,7 @@ "OutputType": "IMicrosoftGraphImportedDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentityCount", "ApiReferenceLink": null, @@ -55180,7 +55180,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentityCount", "ApiReferenceLink": null, @@ -55337,7 +55337,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentAssignmentCount", "ApiReferenceLink": null, @@ -55432,7 +55432,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategoryCount", "ApiReferenceLink": null, @@ -55527,7 +55527,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySettingCount", "ApiReferenceLink": null, @@ -55622,7 +55622,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinitionCount", "ApiReferenceLink": null, @@ -55654,7 +55654,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCount", "ApiReferenceLink": null, @@ -55685,7 +55685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCustomizedSetting", "ApiReferenceLink": null, @@ -55780,7 +55780,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummaryCount", "ApiReferenceLink": null, @@ -55875,7 +55875,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceStateCount", "ApiReferenceLink": null, @@ -56002,7 +56002,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentSettingCount", "ApiReferenceLink": null, @@ -56097,7 +56097,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentUserStateCount", "ApiReferenceLink": null, @@ -56287,7 +56287,7 @@ "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignmentCount", "ApiReferenceLink": null, @@ -56319,7 +56319,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileCount", "ApiReferenceLink": null, @@ -56413,7 +56413,7 @@ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIoUpdateStatusCount", "ApiReferenceLink": null, @@ -56570,7 +56570,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryCount", "ApiReferenceLink": null, @@ -56665,7 +56665,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummaryCount", "ApiReferenceLink": null, @@ -56697,7 +56697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCount", "ApiReferenceLink": null, @@ -56852,7 +56852,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetailCount", "ApiReferenceLink": null, @@ -56911,7 +56911,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRuleCount", "ApiReferenceLink": null, @@ -56925,7 +56925,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCloudPcRemoteActionResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta", @@ -56940,7 +56940,7 @@ "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCloudPcReviewStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta", @@ -57001,7 +57001,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyStateCount", "ApiReferenceLink": null, @@ -57045,7 +57045,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationStateCount", "ApiReferenceLink": null, @@ -57060,7 +57060,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCount", "ApiReferenceLink": null, @@ -57136,7 +57136,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedAppCount", "ApiReferenceLink": null, @@ -57214,7 +57214,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionStateCount", "ApiReferenceLink": null, @@ -57245,7 +57245,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceFileVaultKey", "ApiReferenceLink": null, @@ -57322,7 +57322,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptStateCount", "ApiReferenceLink": null, @@ -57366,7 +57366,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequestCount", "ApiReferenceLink": null, @@ -57410,7 +57410,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationStateCount", "ApiReferenceLink": null, @@ -57425,7 +57425,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceNonCompliantSetting", "ApiReferenceLink": null, @@ -57516,7 +57516,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateCount", "ApiReferenceLink": null, @@ -57560,7 +57560,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingStateCount", "ApiReferenceLink": null, @@ -57633,7 +57633,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount", "ApiReferenceLink": null, @@ -57711,7 +57711,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfigurationCount", "ApiReferenceLink": null, @@ -57805,7 +57805,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThresholdCount", "ApiReferenceLink": null, @@ -57899,7 +57899,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponseCount", "ApiReferenceLink": null, @@ -57993,7 +57993,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteCount", "ApiReferenceLink": null, @@ -58119,7 +58119,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelServer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerCount", "ApiReferenceLink": null, @@ -58151,7 +58151,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetric", "ApiReferenceLink": null, @@ -58185,7 +58185,7 @@ "OutputType": "IMicrosoftGraphKeyLongValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetricTimeSeries", "ApiReferenceLink": null, @@ -58377,7 +58377,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount", "ApiReferenceLink": null, @@ -58425,7 +58425,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventCount", "ApiReferenceLink": null, @@ -58551,7 +58551,7 @@ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnectorCount", "ApiReferenceLink": null, @@ -58675,7 +58675,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordCount", "ApiReferenceLink": null, @@ -58706,7 +58706,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordPortalNotification", "ApiReferenceLink": null, @@ -58800,7 +58800,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAlertRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoringAlertRuleCount", "ApiReferenceLink": null, @@ -58894,7 +58894,7 @@ "OutputType": "IMicrosoftGraphNdesConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementNdeConnectorCount", "ApiReferenceLink": null, @@ -58988,7 +58988,7 @@ "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateCount", "ApiReferenceLink": null, @@ -59082,7 +59082,7 @@ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount", "ApiReferenceLink": null, @@ -59114,7 +59114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyApprovableOperation", "ApiReferenceLink": null, @@ -59162,7 +59162,7 @@ "OutputType": "IMicrosoftGraphOperationApprovalPolicySet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyOperationRequiringApproval", "ApiReferenceLink": null, @@ -59257,7 +59257,7 @@ "OutputType": "IMicrosoftGraphOperationApprovalRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequestById", "ApiReferenceLink": null, @@ -59305,7 +59305,7 @@ "OutputType": "IMicrosoftGraphOperationApprovalRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestStatus", "ApiReferenceLink": null, @@ -59415,7 +59415,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementPartnerCount", "ApiReferenceLink": null, @@ -59557,7 +59557,7 @@ "OutputType": "IMicrosoftGraphRemoteActionAudit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRemoteActionAuditCount", "ApiReferenceLink": null, @@ -59699,7 +59699,7 @@ "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartnerCount", "ApiReferenceLink": null, @@ -59825,7 +59825,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementReports" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportActiveMalwareReport", "ApiReferenceLink": null, @@ -59840,7 +59840,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportActiveMalwareSummaryReport", "ApiReferenceLink": null, @@ -59855,7 +59855,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportAppInstallSummaryReport", "ApiReferenceLink": null, @@ -59870,7 +59870,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportAppStatusOverviewReport", "ApiReferenceLink": null, @@ -59885,7 +59885,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportCachedReport", "ApiReferenceLink": null, @@ -60076,7 +60076,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReportCachedReportConfigurationCount", "ApiReferenceLink": null, @@ -60139,7 +60139,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyDeviceReport", "ApiReferenceLink": null, @@ -60154,7 +60154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyDeviceSummaryReport", "ApiReferenceLink": null, @@ -60169,7 +60169,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceReport", "ApiReferenceLink": null, @@ -60233,7 +60233,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", "ApiReferenceLink": null, @@ -60297,7 +60297,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyReportForDevice", "ApiReferenceLink": null, @@ -60312,7 +60312,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportComplianceSettingDetailReport", "ApiReferenceLink": null, @@ -60327,7 +60327,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportComplianceSettingNonComplianceReport", "ApiReferenceLink": null, @@ -60391,7 +60391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportComplianceSettingReport", "ApiReferenceLink": null, @@ -60406,7 +60406,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigManagerDevicePolicyStatusReport", "ApiReferenceLink": null, @@ -60421,7 +60421,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyDeviceReport", "ApiReferenceLink": null, @@ -60436,7 +60436,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyDeviceSummaryReport", "ApiReferenceLink": null, @@ -60451,7 +60451,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceReport", "ApiReferenceLink": null, @@ -60515,7 +60515,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", "ApiReferenceLink": null, @@ -60579,7 +60579,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyReportForDevice", "ApiReferenceLink": null, @@ -60594,7 +60594,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicySettingDeviceSummaryReport", "ApiReferenceLink": null, @@ -60609,7 +60609,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingDetailReport", "ApiReferenceLink": null, @@ -60624,7 +60624,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingNonComplianceReport", "ApiReferenceLink": null, @@ -60688,7 +60688,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingReport", "ApiReferenceLink": null, @@ -60703,7 +60703,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceConfigurationPolicySettingSummaryReport", "ApiReferenceLink": null, @@ -60718,7 +60718,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceConfigurationPolicyStatusSummary", "ApiReferenceLink": null, @@ -60733,7 +60733,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceInstallStatusReport", "ApiReferenceLink": null, @@ -60748,7 +60748,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", "ApiReferenceLink": null, @@ -60812,7 +60812,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentSettingReport", "ApiReferenceLink": null, @@ -60876,7 +60876,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceNonComplianceReport", "ApiReferenceLink": null, @@ -60940,7 +60940,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDevicePolicyComplianceReport", "ApiReferenceLink": null, @@ -61004,7 +61004,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDevicePolicySettingComplianceReport", "ApiReferenceLink": null, @@ -61068,7 +61068,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliacePolicyReport", "ApiReferenceLink": null, @@ -61132,7 +61132,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliancePolicySettingReport", "ApiReferenceLink": null, @@ -61196,7 +61196,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByPolicyPlatformComplianceReport", "ApiReferenceLink": null, @@ -61260,7 +61260,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceStatusBySettingReport", "ApiReferenceLink": null, @@ -61324,7 +61324,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliacePolicyReport", "ApiReferenceLink": null, @@ -61388,7 +61388,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliancePolicySettingReport", "ApiReferenceLink": null, @@ -61452,7 +61452,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceWithoutCompliancePolicyReport", "ApiReferenceLink": null, @@ -61516,7 +61516,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportEncryptionReportForDevice", "ApiReferenceLink": null, @@ -61531,7 +61531,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportEnrollmentConfigurationPolicyByDevice", "ApiReferenceLink": null, @@ -61673,7 +61673,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExportJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReportExportJobCount", "ApiReferenceLink": null, @@ -61736,7 +61736,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppReport", "ApiReferenceLink": null, @@ -61751,7 +61751,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppSummaryReport", "ApiReferenceLink": null, @@ -61766,7 +61766,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportFilter", "ApiReferenceLink": null, @@ -61830,7 +61830,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportGroupPolicySettingDeviceSettingReport", "ApiReferenceLink": null, @@ -61862,7 +61862,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportHistoricalReport", "ApiReferenceLink": null, @@ -61926,7 +61926,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportMalwareSummaryReport", "ApiReferenceLink": null, @@ -61941,7 +61941,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppConfigurationReport", "ApiReferenceLink": null, @@ -61989,7 +61989,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppRegistrationSummaryReport", "ApiReferenceLink": null, @@ -62037,7 +62037,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportNoncompliantDeviceAndSettingReport", "ApiReferenceLink": null, @@ -62101,7 +62101,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceMetadata", "ApiReferenceLink": null, @@ -62165,7 +62165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceReport", "ApiReferenceLink": null, @@ -62229,7 +62229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceSummaryReport", "ApiReferenceLink": null, @@ -62293,7 +62293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportQuietTimePolicyUserReport", "ApiReferenceLink": null, @@ -62308,7 +62308,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportQuietTimePolicyUserSummaryReport", "ApiReferenceLink": null, @@ -62323,7 +62323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportRelatedAppStatusReport", "ApiReferenceLink": null, @@ -62338,7 +62338,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportRemoteAssistanceSessionReport", "ApiReferenceLink": null, @@ -62386,7 +62386,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportSettingNonComplianceReport", "ApiReferenceLink": null, @@ -62450,7 +62450,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportUnhealthyDefenderAgentReport", "ApiReferenceLink": null, @@ -62465,7 +62465,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportUnhealthyFirewallReport", "ApiReferenceLink": null, @@ -62480,7 +62480,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportUnhealthyFirewallSummaryReport", "ApiReferenceLink": null, @@ -62495,7 +62495,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportUserInstallStatusReport", "ApiReferenceLink": null, @@ -62510,7 +62510,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsDriverUpdateAlertPerPolicyPerDeviceReport", "ApiReferenceLink": null, @@ -62525,7 +62525,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsDriverUpdateAlertSummaryReport", "ApiReferenceLink": null, @@ -62540,7 +62540,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsQualityUpdateAlertPerPolicyPerDeviceReport", "ApiReferenceLink": null, @@ -62555,7 +62555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsQualityUpdateAlertSummaryReport", "ApiReferenceLink": null, @@ -62570,7 +62570,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsUpdateAlertPerPolicyPerDeviceReport", "ApiReferenceLink": null, @@ -62585,7 +62585,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsUpdateAlertSummaryReport", "ApiReferenceLink": null, @@ -62600,7 +62600,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportZebraFotaDeploymentReport", "ApiReferenceLink": null, @@ -62758,7 +62758,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignmentCount", "ApiReferenceLink": null, @@ -62790,7 +62790,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceAccessProfileCount", "ApiReferenceLink": null, @@ -62916,7 +62916,7 @@ "OutputType": "IMicrosoftGraphResourceOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceOperationCount", "ApiReferenceLink": null, @@ -62963,7 +62963,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceOperationScopeForUser", "ApiReferenceLink": null, @@ -63011,7 +63011,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementReusablePolicySettingReferencingConfigurationPolicyJust", "ApiReferenceLink": null, @@ -63026,7 +63026,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationJustInTimeAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReusablePolicySettingReferencingConfigurationPolicyLatestUpgradeDefaultBaselinePolicy", "ApiReferenceLink": null, @@ -63104,7 +63104,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReusableSettingCount", "ApiReferenceLink": null, @@ -63230,7 +63230,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignmentCount", "ApiReferenceLink": null, @@ -63321,7 +63321,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTagCount", "ApiReferenceLink": null, @@ -63431,7 +63431,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleDefinitionCount", "ApiReferenceLink": null, @@ -63573,7 +63573,7 @@ "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentCount", "ApiReferenceLink": null, @@ -63793,7 +63793,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignmentCount", "ApiReferenceLink": null, @@ -63838,7 +63838,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagCount", "ApiReferenceLink": null, @@ -63885,7 +63885,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementRoleScopeTagRoleScopeTagById", "ApiReferenceLink": null, @@ -64057,7 +64057,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptAssignmentCount", "ApiReferenceLink": null, @@ -64105,7 +64105,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptCount", "ApiReferenceLink": null, @@ -64214,7 +64214,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateCount", "ApiReferenceLink": null, @@ -64405,7 +64405,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptGroupAssignmentCount", "ApiReferenceLink": null, @@ -64596,7 +64596,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptUserRunStateCount", "ApiReferenceLink": null, @@ -64802,7 +64802,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementSettingDefinitionCount", "ApiReferenceLink": null, @@ -64864,7 +64864,7 @@ "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementSuggestedEnrollmentLimit", "ApiReferenceLink": null, @@ -64959,7 +64959,7 @@ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartnerCount", "ApiReferenceLink": null, @@ -65116,7 +65116,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategoryCount", "ApiReferenceLink": null, @@ -65211,7 +65211,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSettingCount", "ApiReferenceLink": null, @@ -65306,7 +65306,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinitionCount", "ApiReferenceLink": null, @@ -65338,7 +65338,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCount", "ApiReferenceLink": null, @@ -65461,7 +65461,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryCount", "ApiReferenceLink": null, @@ -65505,7 +65505,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSettingCount", "ApiReferenceLink": null, @@ -65549,7 +65549,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinitionCount", "ApiReferenceLink": null, @@ -65564,7 +65564,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCount", "ApiReferenceLink": null, @@ -65625,7 +65625,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSettingCount", "ApiReferenceLink": null, @@ -65703,7 +65703,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateSettingCount", "ApiReferenceLink": null, @@ -65735,7 +65735,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTenantAttachRbacState", "ApiReferenceLink": null, @@ -65908,7 +65908,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusCount", "ApiReferenceLink": null, @@ -66035,7 +66035,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignmentCount", "ApiReferenceLink": null, @@ -66067,7 +66067,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionCount", "ApiReferenceLink": null, @@ -66161,7 +66161,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignmentCount", "ApiReferenceLink": null, @@ -66288,7 +66288,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTroubleshootingEventCount", "ApiReferenceLink": null, @@ -66443,7 +66443,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverviewCount", "ApiReferenceLink": null, @@ -66457,7 +66457,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCount", "ApiReferenceLink": null, @@ -66599,7 +66599,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDeviceCount", "ApiReferenceLink": null, @@ -66836,7 +66836,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionCount", "ApiReferenceLink": null, @@ -66978,7 +66978,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetailCount", "ApiReferenceLink": null, @@ -67120,7 +67120,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceIdCount", "ApiReferenceLink": null, @@ -67262,7 +67262,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversionCount", "ApiReferenceLink": null, @@ -67309,7 +67309,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceCount", "ApiReferenceLink": null, @@ -67451,7 +67451,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformanceCount", "ApiReferenceLink": null, @@ -67593,7 +67593,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceCount", "ApiReferenceLink": null, @@ -67735,7 +67735,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetailCount", "ApiReferenceLink": null, @@ -67877,7 +67877,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformanceCount", "ApiReferenceLink": null, @@ -68000,7 +68000,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValueCount", "ApiReferenceLink": null, @@ -68253,7 +68253,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineCount", "ApiReferenceLink": null, @@ -68587,7 +68587,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpactCount", "ApiReferenceLink": null, @@ -68776,7 +68776,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpactCount", "ApiReferenceLink": null, @@ -68918,7 +68918,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformanceCount", "ApiReferenceLink": null, @@ -69060,7 +69060,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistoryCount", "ApiReferenceLink": null, @@ -69202,7 +69202,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformanceCount", "ApiReferenceLink": null, @@ -69344,7 +69344,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformanceCount", "ApiReferenceLink": null, @@ -69500,7 +69500,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryCount", "ApiReferenceLink": null, @@ -69543,7 +69543,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValueCount", "ApiReferenceLink": null, @@ -69653,7 +69653,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistoryCount", "ApiReferenceLink": null, @@ -69795,7 +69795,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformanceCount", "ApiReferenceLink": null, @@ -69938,7 +69938,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScopeCount", "ApiReferenceLink": null, @@ -70080,7 +70080,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScoreCount", "ApiReferenceLink": null, @@ -70222,7 +70222,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistoryCount", "ApiReferenceLink": null, @@ -70364,7 +70364,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessCount", "ApiReferenceLink": null, @@ -70506,7 +70506,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformanceCount", "ApiReferenceLink": null, @@ -70582,7 +70582,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEventCount", "ApiReferenceLink": null, @@ -70691,7 +70691,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentityCount", "ApiReferenceLink": null, @@ -70833,7 +70833,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcessCount", "ApiReferenceLink": null, @@ -70975,7 +70975,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistoryCount", "ApiReferenceLink": null, @@ -71117,7 +71117,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScoreCount", "ApiReferenceLink": null, @@ -71259,7 +71259,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDeviceCount", "ApiReferenceLink": null, @@ -71448,7 +71448,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnectionCount", "ApiReferenceLink": null, @@ -71590,7 +71590,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformanceCount", "ApiReferenceLink": null, @@ -71732,7 +71732,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistoryCount", "ApiReferenceLink": null, @@ -71921,7 +71921,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricCount", "ApiReferenceLink": null, @@ -72063,7 +72063,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDeviceCount", "ApiReferenceLink": null, @@ -72206,7 +72206,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformanceCount", "ApiReferenceLink": null, @@ -72316,7 +72316,7 @@ "OutputType": "IMicrosoftGraphUserPfxCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserPfxCertificateCount", "ApiReferenceLink": null, @@ -72424,7 +72424,7 @@ "OutputType": "IMicrosoftGraphCloudPcAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventAuditActivityType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-beta", @@ -72455,7 +72455,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventCount", "ApiReferenceLink": null, @@ -72515,7 +72515,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkActionCount", "ApiReferenceLink": null, @@ -72592,7 +72592,7 @@ "OutputType": "IMicrosoftGraphCloudPc" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcConnectivityHistory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpcconnectivityhistory?view=graph-rest-beta", @@ -72624,7 +72624,7 @@ "OutputType": "IMicrosoftGraphCloudPcConnectivityEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcCount", "ApiReferenceLink": null, @@ -72655,7 +72655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcFrontlineCloudPcAccessState", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta", @@ -72670,7 +72670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcLaunchInfo", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta", @@ -72717,7 +72717,7 @@ "OutputType": "IMicrosoftGraphCloudPc" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcShiftWorkCloudPcAccessState", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getshiftworkcloudpcaccessstate?view=graph-rest-beta", @@ -72732,7 +72732,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcSupportedCloudPcRemoteAction", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getsupportedcloudpcremoteactions?view=graph-rest-beta", @@ -72858,7 +72858,7 @@ "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageCount", "ApiReferenceLink": null, @@ -72889,7 +72889,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageSourceImage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-beta", @@ -72920,7 +72920,7 @@ "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointEffectivePermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-geteffectivepermissions?view=graph-rest-beta", @@ -73014,7 +73014,7 @@ "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSettingCount", "ApiReferenceLink": null, @@ -73074,7 +73074,7 @@ "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlanCount", "ApiReferenceLink": null, @@ -73151,7 +73151,7 @@ "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImageCount", "ApiReferenceLink": null, @@ -73245,7 +73245,7 @@ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionCount", "ApiReferenceLink": null, @@ -73428,7 +73428,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount", "ApiReferenceLink": null, @@ -73472,7 +73472,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -73487,7 +73487,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount", "ApiReferenceLink": null, @@ -73502,7 +73502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyCount", "ApiReferenceLink": null, @@ -73547,7 +73547,7 @@ "OutputType": "IMicrosoftGraphCloudPcReports" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportActionStatusReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getactionstatusreports?view=graph-rest-beta", @@ -73562,7 +73562,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCloudPcPerformanceReport", "ApiReferenceLink": null, @@ -73577,7 +73577,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCloudPcRecommendationReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getcloudpcrecommendationreports?view=graph-rest-beta", @@ -73592,7 +73592,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportConnectionQualityReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getconnectionqualityreports?view=graph-rest-beta", @@ -73607,7 +73607,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCrossRegionDisasterRecoveryReport", "ApiReferenceLink": null, @@ -73622,7 +73622,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportDailyAggregatedRemoteConnectionReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getdailyaggregatedremoteconnectionreports?view=graph-rest-beta", @@ -73683,7 +73683,7 @@ "OutputType": "IMicrosoftGraphCloudPcExportJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJobCount", "ApiReferenceLink": null, @@ -73697,7 +73697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportFrontlineReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getfrontlinereport?view=graph-rest-beta", @@ -73712,7 +73712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportInaccessibleCloudPcReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getinaccessiblecloudpcreports?view=graph-rest-beta", @@ -73727,7 +73727,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRawRemoteConnectionReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrawremoteconnectionreports?view=graph-rest-beta", @@ -73742,7 +73742,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRealTimeRemoteConnectionLatency", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrealtimeremoteconnectionlatency?view=graph-rest-beta", @@ -73757,7 +73757,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRealTimeRemoteConnectionStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrealtimeremoteconnectionstatus?view=graph-rest-beta", @@ -73772,7 +73772,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRemoteConnectionHistoricalReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getremoteconnectionhistoricalreports?view=graph-rest-beta", @@ -73804,7 +73804,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportSharedUseLicenseUsageReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getshareduselicenseusagereport?view=graph-rest-beta", @@ -73836,7 +73836,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportTotalAggregatedRemoteConnectionReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-gettotalaggregatedremoteconnectionreports?view=graph-rest-beta", @@ -73868,7 +73868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointScopedPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-retrievescopedpermissions?view=graph-rest-beta", @@ -73928,7 +73928,7 @@ "OutputType": "IMicrosoftGraphCloudPcServicePlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlanCount", "ApiReferenceLink": null, @@ -74022,7 +74022,7 @@ "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlanCount", "ApiReferenceLink": null, @@ -74116,7 +74116,7 @@ "OutputType": "IMicrosoftGraphCloudPcSnapshot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotCount", "ApiReferenceLink": null, @@ -74147,7 +74147,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotStorageAccount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcsnapshot-getstorageaccounts?view=graph-rest-beta", @@ -74179,7 +74179,7 @@ "OutputType": "IMicrosoftGraphCloudPcForensicStorageAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcsnapshot-getsubscriptions?view=graph-rest-beta", @@ -74256,7 +74256,7 @@ "OutputType": "IMicrosoftGraphCloudPcSupportedRegion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegionCount", "ApiReferenceLink": null, @@ -74287,7 +74287,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointTenantEncryptionSetting", "ApiReferenceLink": null, @@ -74393,7 +74393,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignmentCount", "ApiReferenceLink": null, @@ -74408,7 +74408,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingCount", "ApiReferenceLink": null, @@ -74531,7 +74531,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceCount", "ApiReferenceLink": null, @@ -74605,7 +74605,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignmentCount", "ApiReferenceLink": null, @@ -74620,7 +74620,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileCount", "ApiReferenceLink": null, @@ -74714,7 +74714,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityCount", "ApiReferenceLink": null, @@ -74966,7 +74966,7 @@ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignmentCount", "ApiReferenceLink": null, @@ -74998,7 +74998,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileCount", "ApiReferenceLink": null, @@ -75092,7 +75092,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummaryCount", "ApiReferenceLink": null, @@ -75186,7 +75186,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount", "ApiReferenceLink": null, @@ -75312,7 +75312,7 @@ "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationCount", "ApiReferenceLink": null, @@ -75454,7 +75454,7 @@ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount", "ApiReferenceLink": null, @@ -75628,7 +75628,7 @@ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignmentCount", "ApiReferenceLink": null, @@ -75660,7 +75660,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileCount", "ApiReferenceLink": null, @@ -75691,7 +75691,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -75789,7 +75789,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceMemberObject", "ApiReferenceLink": null, @@ -76023,7 +76023,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfCount", "ApiReferenceLink": null, @@ -76071,7 +76071,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -76086,7 +76086,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -76235,7 +76235,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerByRef", "ApiReferenceLink": null, @@ -76282,7 +76282,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerCount", "ApiReferenceLink": null, @@ -76330,7 +76330,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsEndpoint", "ApiReferenceLink": null, @@ -76345,7 +76345,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsServicePrincipal", "ApiReferenceLink": null, @@ -76360,7 +76360,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsUser", "ApiReferenceLink": null, @@ -76509,7 +76509,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserByRef", "ApiReferenceLink": null, @@ -76556,7 +76556,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserCount", "ApiReferenceLink": null, @@ -76604,7 +76604,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserCountAsEndpoint", "ApiReferenceLink": null, @@ -76619,7 +76619,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserCountAsServicePrincipal", "ApiReferenceLink": null, @@ -76634,7 +76634,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserCountAsUser", "ApiReferenceLink": null, @@ -76769,7 +76769,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -76817,7 +76817,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -76832,7 +76832,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -76909,7 +76909,7 @@ "OutputType": "IMicrosoftGraphUsageRight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceUsageRightsCount", "ApiReferenceLink": null, @@ -76957,7 +76957,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDeviceUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -77081,7 +77081,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitCount", "ApiReferenceLink": null, @@ -77204,7 +77204,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitExtensionCount", "ApiReferenceLink": null, @@ -77638,7 +77638,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberByRef", "ApiReferenceLink": null, @@ -77685,7 +77685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCount", "ApiReferenceLink": null, @@ -77733,7 +77733,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsApplication", "ApiReferenceLink": null, @@ -77781,7 +77781,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsDevice", "ApiReferenceLink": null, @@ -77829,7 +77829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsGroup", "ApiReferenceLink": null, @@ -77877,7 +77877,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsOrgContact", "ApiReferenceLink": null, @@ -77925,7 +77925,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsServicePrincipal", "ApiReferenceLink": null, @@ -77973,7 +77973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsUser", "ApiReferenceLink": null, @@ -78116,7 +78116,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMemberCount", "ApiReferenceLink": null, @@ -78227,7 +78227,7 @@ "OutputType": "IMicrosoftGraphAttributeSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAttributeSetCount", "ApiReferenceLink": null, @@ -78335,7 +78335,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationCount", "ApiReferenceLink": null, @@ -78429,7 +78429,7 @@ "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthorityCount", "ApiReferenceLink": null, @@ -78587,7 +78587,7 @@ "OutputType": "IMicrosoftGraphAllowedValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValueCount", "ApiReferenceLink": null, @@ -78619,7 +78619,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionCount", "ApiReferenceLink": null, @@ -78839,7 +78839,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryDeletedItemById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -78854,7 +78854,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -78868,7 +78868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsApplication", "ApiReferenceLink": null, @@ -78882,7 +78882,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsDevice", "ApiReferenceLink": null, @@ -78896,7 +78896,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsGroup", "ApiReferenceLink": null, @@ -78910,7 +78910,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsServicePrincipal", "ApiReferenceLink": null, @@ -78924,7 +78924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsUser", "ApiReferenceLink": null, @@ -78938,7 +78938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryDeletedItemMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -78955,7 +78955,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryDeletedItemMemberObject", "ApiReferenceLink": null, @@ -79001,7 +79001,7 @@ "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryDeviceLocalCredentialCount", "ApiReferenceLink": null, @@ -79044,7 +79044,7 @@ "OutputType": "IMicrosoftGraphExternalUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryExternalUserProfileCount", "ApiReferenceLink": null, @@ -79101,7 +79101,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyToCount", "ApiReferenceLink": null, @@ -79116,7 +79116,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyCount", "ApiReferenceLink": null, @@ -79193,7 +79193,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryFederationConfigurationCount", "ApiReferenceLink": null, @@ -79253,7 +79253,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryImpactedResourceCount", "ApiReferenceLink": null, @@ -79346,7 +79346,7 @@ "OutputType": "IMicrosoftGraphInboundSharedUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryInboundSharedUserProfileCount", "ApiReferenceLink": null, @@ -79406,7 +79406,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryObjectById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -79421,7 +79421,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryObjectCount", "ApiReferenceLink": null, @@ -79449,7 +79449,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryObjectMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -79547,7 +79547,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryObjectMemberObject", "ApiReferenceLink": null, @@ -79661,7 +79661,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryObjectUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -79722,7 +79722,7 @@ "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryOnPremiseSynchronizationCount", "ApiReferenceLink": null, @@ -79848,7 +79848,7 @@ "OutputType": "IMicrosoftGraphOutboundSharedUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileCount", "ApiReferenceLink": null, @@ -79957,7 +79957,7 @@ "OutputType": "IMicrosoftGraphTenantReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenantCount", "ApiReferenceLink": null, @@ -80034,7 +80034,7 @@ "OutputType": "IMicrosoftGraphPendingExternalUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryPendingExternalUserProfileCount", "ApiReferenceLink": null, @@ -80111,7 +80111,7 @@ "OutputType": "IMicrosoftGraphRecommendation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRecommendationCount", "ApiReferenceLink": null, @@ -80205,7 +80205,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRecommendationImpactedResourceCount", "ApiReferenceLink": null, @@ -80332,7 +80332,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryRoleById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -80395,7 +80395,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleCount", "ApiReferenceLink": null, @@ -80710,7 +80710,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberByRef", "ApiReferenceLink": null, @@ -80757,7 +80757,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCount", "ApiReferenceLink": null, @@ -80805,7 +80805,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsApplication", "ApiReferenceLink": null, @@ -80820,7 +80820,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsDevice", "ApiReferenceLink": null, @@ -80835,7 +80835,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsGroup", "ApiReferenceLink": null, @@ -80850,7 +80850,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsOrgContact", "ApiReferenceLink": null, @@ -80865,7 +80865,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsServicePrincipal", "ApiReferenceLink": null, @@ -80880,7 +80880,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsUser", "ApiReferenceLink": null, @@ -80895,7 +80895,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryRoleMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -80912,7 +80912,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryRoleMemberObject", "ApiReferenceLink": null, @@ -80991,7 +80991,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleScopedMemberCount", "ApiReferenceLink": null, @@ -81134,7 +81134,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryRoleTemplateById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -81149,7 +81149,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleTemplateCount", "ApiReferenceLink": null, @@ -81243,7 +81243,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryRoleTemplateMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -81260,7 +81260,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryRoleTemplateMemberObject", "ApiReferenceLink": null, @@ -81277,7 +81277,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryRoleTemplateUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -81292,7 +81292,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectoryRoleUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -81465,7 +81465,7 @@ "OutputType": "IMicrosoftGraphDirectorySettingTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectorySettingTemplateById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -81480,7 +81480,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySettingTemplateCount", "ApiReferenceLink": null, @@ -81542,7 +81542,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectorySettingTemplateMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -81559,7 +81559,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectorySettingTemplateMemberObject", "ApiReferenceLink": null, @@ -81576,7 +81576,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaDirectorySettingTemplateUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -81620,7 +81620,7 @@ "OutputType": "IMicrosoftGraphSharedEmailDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySharedEmailDomainCount", "ApiReferenceLink": null, @@ -81693,7 +81693,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySubscriptionCount", "ApiReferenceLink": null, @@ -81786,7 +81786,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainCount", "ApiReferenceLink": null, @@ -81871,7 +81871,7 @@ "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainFederationConfigurationCount", "ApiReferenceLink": null, @@ -81932,7 +81932,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainNameReferenceCount", "ApiReferenceLink": null, @@ -82010,7 +82010,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainServiceConfigurationRecordCount", "ApiReferenceLink": null, @@ -82071,7 +82071,7 @@ "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainSharedEmailDomainInvitationCount", "ApiReferenceLink": null, @@ -82132,7 +82132,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainVerificationDnsRecordCount", "ApiReferenceLink": null, @@ -82334,7 +82334,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveBundleContent", "ApiReferenceLink": null, @@ -82349,7 +82349,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveBundleContentStream", "ApiReferenceLink": null, @@ -82364,7 +82364,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveBundleCount", "ApiReferenceLink": null, @@ -82423,7 +82423,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -82482,7 +82482,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -82526,7 +82526,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveFollowingContent", "ApiReferenceLink": null, @@ -82541,7 +82541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveFollowingContentStream", "ApiReferenceLink": null, @@ -82556,7 +82556,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveFollowingCount", "ApiReferenceLink": null, @@ -82850,7 +82850,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -83071,7 +83071,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemChildContent", "ApiReferenceLink": null, @@ -83086,7 +83086,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemChildContentStream", "ApiReferenceLink": null, @@ -83101,7 +83101,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemChildCount", "ApiReferenceLink": null, @@ -83165,7 +83165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemContent", "ApiReferenceLink": null, @@ -83229,7 +83229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemContentStream", "ApiReferenceLink": null, @@ -83293,7 +83293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemCount", "ApiReferenceLink": null, @@ -83352,7 +83352,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -83428,7 +83428,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -83492,7 +83492,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -83612,7 +83612,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -83656,7 +83656,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -83701,7 +83701,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -83716,7 +83716,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -83775,7 +83775,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemVersionCount", "ApiReferenceLink": null, @@ -83932,7 +83932,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemPermissionCount", "ApiReferenceLink": null, @@ -84040,7 +84040,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemSubscriptionCount", "ApiReferenceLink": null, @@ -84133,7 +84133,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemThumbnailCount", "ApiReferenceLink": null, @@ -84324,7 +84324,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemVersionContent", "ApiReferenceLink": null, @@ -84388,7 +84388,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemVersionCount", "ApiReferenceLink": null, @@ -84501,7 +84501,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -84576,7 +84576,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListColumnCount", "ApiReferenceLink": null, @@ -84664,7 +84664,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnCount", "ApiReferenceLink": null, @@ -84708,7 +84708,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -84752,7 +84752,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -84797,7 +84797,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeCount", "ApiReferenceLink": null, @@ -84856,7 +84856,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -84959,7 +84959,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemCount", "ApiReferenceLink": null, @@ -85018,7 +85018,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -85079,7 +85079,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -85124,7 +85124,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -85139,7 +85139,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -85198,7 +85198,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemVersionCount", "ApiReferenceLink": null, @@ -85257,7 +85257,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListOperationCount", "ApiReferenceLink": null, @@ -85301,7 +85301,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListSubscriptionCount", "ApiReferenceLink": null, @@ -85418,7 +85418,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -85492,7 +85492,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootChildContent", "ApiReferenceLink": null, @@ -85507,7 +85507,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootChildContentStream", "ApiReferenceLink": null, @@ -85522,7 +85522,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootChildCount", "ApiReferenceLink": null, @@ -85537,7 +85537,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootContent", "ApiReferenceLink": null, @@ -85552,7 +85552,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootContentStream", "ApiReferenceLink": null, @@ -85611,7 +85611,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -85736,7 +85736,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -85795,7 +85795,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -85913,7 +85913,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -85957,7 +85957,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -86002,7 +86002,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -86017,7 +86017,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -86076,7 +86076,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemVersionCount", "ApiReferenceLink": null, @@ -86135,7 +86135,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootPermissionCount", "ApiReferenceLink": null, @@ -86194,7 +86194,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootSubscriptionCount", "ApiReferenceLink": null, @@ -86238,7 +86238,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootThumbnailCount", "ApiReferenceLink": null, @@ -86282,7 +86282,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootVersionContent", "ApiReferenceLink": null, @@ -86297,7 +86297,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootVersionCount", "ApiReferenceLink": null, @@ -86341,7 +86341,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveSpecialContent", "ApiReferenceLink": null, @@ -86356,7 +86356,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveSpecialContentStream", "ApiReferenceLink": null, @@ -86371,7 +86371,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveSpecialCount", "ApiReferenceLink": null, @@ -86784,7 +86784,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -86863,7 +86863,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentCategoryCount", "ApiReferenceLink": null, @@ -87027,7 +87027,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentCount", "ApiReferenceLink": null, @@ -87456,7 +87456,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentResourceCount", "ApiReferenceLink": null, @@ -87622,7 +87622,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResourceCount", "ApiReferenceLink": null, @@ -87774,7 +87774,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentRubricByRef", "ApiReferenceLink": null, @@ -87978,7 +87978,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategoryCount", "ApiReferenceLink": null, @@ -88055,7 +88055,7 @@ "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingSchemeCount", "ApiReferenceLink": null, @@ -88229,7 +88229,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionCount", "ApiReferenceLink": null, @@ -88371,7 +88371,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcomeCount", "ApiReferenceLink": null, @@ -88578,7 +88578,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceCount", "ApiReferenceLink": null, @@ -88744,7 +88744,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResourceCount", "ApiReferenceLink": null, @@ -88975,7 +88975,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceCount", "ApiReferenceLink": null, @@ -89149,7 +89149,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount", "ApiReferenceLink": null, @@ -89229,7 +89229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassCount", "ApiReferenceLink": null, @@ -89409,7 +89409,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -89471,7 +89471,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassMemberByRef", "ApiReferenceLink": null, @@ -89518,7 +89518,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassMemberCount", "ApiReferenceLink": null, @@ -89661,7 +89661,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassModuleCount", "ApiReferenceLink": null, @@ -89804,7 +89804,7 @@ "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassModuleResourceCount", "ApiReferenceLink": null, @@ -89906,7 +89906,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassSchoolCount", "ApiReferenceLink": null, @@ -89985,7 +89985,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassTeacherByRef", "ApiReferenceLink": null, @@ -90024,7 +90024,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassTeacherCount", "ApiReferenceLink": null, @@ -90211,7 +90211,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -90225,7 +90225,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentCategoryCount", "ApiReferenceLink": null, @@ -90255,7 +90255,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentCount", "ApiReferenceLink": null, @@ -90407,7 +90407,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResourceCount", "ApiReferenceLink": null, @@ -90451,7 +90451,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResourceCount", "ApiReferenceLink": null, @@ -90481,7 +90481,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentRubricByRef", "ApiReferenceLink": null, @@ -90525,7 +90525,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionCount", "ApiReferenceLink": null, @@ -90569,7 +90569,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcomeCount", "ApiReferenceLink": null, @@ -90613,7 +90613,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceCount", "ApiReferenceLink": null, @@ -90657,7 +90657,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResourceCount", "ApiReferenceLink": null, @@ -90701,7 +90701,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceCount", "ApiReferenceLink": null, @@ -90745,7 +90745,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount", "ApiReferenceLink": null, @@ -90814,7 +90814,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeClassCount", "ApiReferenceLink": null, @@ -90948,7 +90948,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeRubricCount", "ApiReferenceLink": null, @@ -91049,7 +91049,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeSchoolCount", "ApiReferenceLink": null, @@ -91142,7 +91142,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeTaughtClassCount", "ApiReferenceLink": null, @@ -91280,7 +91280,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -91490,7 +91490,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchoolClassByRef", "ApiReferenceLink": null, @@ -91529,7 +91529,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchoolClassCount", "ApiReferenceLink": null, @@ -91569,7 +91569,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchoolCount", "ApiReferenceLink": null, @@ -91710,7 +91710,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchoolUserByRef", "ApiReferenceLink": null, @@ -91741,7 +91741,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchoolUserCount", "ApiReferenceLink": null, @@ -91868,7 +91868,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSynchronizationProfileCount", "ApiReferenceLink": null, @@ -91977,7 +91977,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSynchronizationProfileErrorCount", "ApiReferenceLink": null, @@ -92254,7 +92254,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -92268,7 +92268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentCategoryCount", "ApiReferenceLink": null, @@ -92298,7 +92298,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentCount", "ApiReferenceLink": null, @@ -92452,7 +92452,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResourceCount", "ApiReferenceLink": null, @@ -92496,7 +92496,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResourceCount", "ApiReferenceLink": null, @@ -92526,7 +92526,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentRubricByRef", "ApiReferenceLink": null, @@ -92570,7 +92570,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionCount", "ApiReferenceLink": null, @@ -92614,7 +92614,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcomeCount", "ApiReferenceLink": null, @@ -92658,7 +92658,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceCount", "ApiReferenceLink": null, @@ -92702,7 +92702,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResourceCount", "ApiReferenceLink": null, @@ -92746,7 +92746,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceCount", "ApiReferenceLink": null, @@ -92790,7 +92790,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount", "ApiReferenceLink": null, @@ -92859,7 +92859,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserClassCount", "ApiReferenceLink": null, @@ -92899,7 +92899,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserCount", "ApiReferenceLink": null, @@ -93045,7 +93045,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserRubricCount", "ApiReferenceLink": null, @@ -93114,7 +93114,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserSchoolCount", "ApiReferenceLink": null, @@ -93168,7 +93168,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -93237,7 +93237,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserTaughtClassCount", "ApiReferenceLink": null, @@ -93340,7 +93340,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaEntitlementManagementAccessPackageApplicablePolicyRequirement", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-beta", @@ -93434,7 +93434,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentApprovalCount", "ApiReferenceLink": null, @@ -93448,7 +93448,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentApprovalStepCount", "ApiReferenceLink": null, @@ -93480,7 +93480,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentCount", "ApiReferenceLink": null, @@ -93574,7 +93574,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCount", "ApiReferenceLink": null, @@ -93726,7 +93726,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequestCount", "ApiReferenceLink": null, @@ -93820,7 +93820,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRoleCount", "ApiReferenceLink": null, @@ -94053,7 +94053,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCount", "ApiReferenceLink": null, @@ -94147,7 +94147,7 @@ "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCount", "ApiReferenceLink": null, @@ -94209,7 +94209,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "ApiReferenceLink": null, @@ -94271,7 +94271,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleGroupByRef", "ApiReferenceLink": null, @@ -94377,7 +94377,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceCount", "ApiReferenceLink": null, @@ -94454,7 +94454,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironmentAccessPackageResourceCount", "ApiReferenceLink": null, @@ -94469,7 +94469,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironmentCount", "ApiReferenceLink": null, @@ -94546,7 +94546,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequestCount", "ApiReferenceLink": null, @@ -94655,7 +94655,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAssignmentRequestCount", "ApiReferenceLink": null, @@ -94764,7 +94764,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationCount", "ApiReferenceLink": null, @@ -94826,7 +94826,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorByRef", "ApiReferenceLink": null, @@ -94857,7 +94857,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorCount", "ApiReferenceLink": null, @@ -94920,7 +94920,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorByRef", "ApiReferenceLink": null, @@ -94951,7 +94951,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorCount", "ApiReferenceLink": null, @@ -95073,7 +95073,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubjectCount", "ApiReferenceLink": null, @@ -95130,7 +95130,7 @@ "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalAuthorizationSystemCount", "ApiReferenceLink": null, @@ -95238,7 +95238,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionCount", "ApiReferenceLink": null, @@ -95331,7 +95331,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroupCount", "ApiReferenceLink": null, @@ -95375,7 +95375,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroupMemberCount", "ApiReferenceLink": null, @@ -95473,7 +95473,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemActivityCount", "ApiReferenceLink": null, @@ -95503,7 +95503,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemCount", "ApiReferenceLink": null, @@ -95572,7 +95572,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionOperationCount", "ApiReferenceLink": null, @@ -95719,7 +95719,7 @@ "OutputType": "IMicrosoftGraphIndustryDataConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataConnectorCount", "ApiReferenceLink": null, @@ -95828,7 +95828,7 @@ "OutputType": "IMicrosoftGraphIndustryDataInboundFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataInboundFlowCount", "ApiReferenceLink": null, @@ -95952,7 +95952,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOperationCount", "ApiReferenceLink": null, @@ -95995,7 +95995,7 @@ "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSetCount", "ApiReferenceLink": null, @@ -96038,7 +96038,7 @@ "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlowCount", "ApiReferenceLink": null, @@ -96082,7 +96082,7 @@ "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataReferenceDefinitionCount", "ApiReferenceLink": null, @@ -96125,7 +96125,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRoleGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRoleGroupCount", "ApiReferenceLink": null, @@ -96199,7 +96199,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRunActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunActivityCount", "ApiReferenceLink": null, @@ -96214,7 +96214,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunCount", "ApiReferenceLink": null, @@ -96228,7 +96228,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunStatistics", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-industrydatarun-getstatistics?view=graph-rest-beta", @@ -96307,7 +96307,7 @@ "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataSourceSystemCount", "ApiReferenceLink": null, @@ -96401,7 +96401,7 @@ "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataYearCount", "ApiReferenceLink": null, @@ -96504,7 +96504,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAccountCount", "ApiReferenceLink": null, @@ -96548,7 +96548,7 @@ "OutputType": "IMicrosoftGraphAgedAccountsPayable" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountPayableCount", "ApiReferenceLink": null, @@ -96592,7 +96592,7 @@ "OutputType": "IMicrosoftGraphAgedAccountsReceivable" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivableCount", "ApiReferenceLink": null, @@ -96607,7 +96607,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCount", "ApiReferenceLink": null, @@ -96650,7 +96650,7 @@ "OutputType": "IMicrosoftGraphCountryRegion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCountryRegionCount", "ApiReferenceLink": null, @@ -96694,7 +96694,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCurrencyCount", "ApiReferenceLink": null, @@ -96738,7 +96738,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerCount", "ApiReferenceLink": null, @@ -96797,7 +96797,7 @@ "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCount", "ApiReferenceLink": null, @@ -96871,7 +96871,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent", "ApiReferenceLink": null, @@ -96886,7 +96886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureCount", "ApiReferenceLink": null, @@ -96960,7 +96960,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCount", "ApiReferenceLink": null, @@ -97004,7 +97004,7 @@ "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCount", "ApiReferenceLink": null, @@ -97078,7 +97078,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent", "ApiReferenceLink": null, @@ -97093,7 +97093,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureCount", "ApiReferenceLink": null, @@ -97216,7 +97216,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPictureContent", "ApiReferenceLink": null, @@ -97231,7 +97231,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPictureCount", "ApiReferenceLink": null, @@ -97290,7 +97290,7 @@ "OutputType": "IMicrosoftGraphDimension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimensionCount", "ApiReferenceLink": null, @@ -97337,7 +97337,7 @@ "OutputType": "IMicrosoftGraphDimensionValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimensionValueCount", "ApiReferenceLink": null, @@ -97383,7 +97383,7 @@ "OutputType": "IMicrosoftGraphEmployee" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeeCount", "ApiReferenceLink": null, @@ -97427,7 +97427,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeePictureContent", "ApiReferenceLink": null, @@ -97442,7 +97442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeePictureCount", "ApiReferenceLink": null, @@ -97501,7 +97501,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntryCount", "ApiReferenceLink": null, @@ -97545,7 +97545,7 @@ "OutputType": "IMicrosoftGraphCompanyInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyInformationCount", "ApiReferenceLink": null, @@ -97560,7 +97560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyInformationPicture", "ApiReferenceLink": null, @@ -97635,7 +97635,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemCategoryCount", "ApiReferenceLink": null, @@ -97650,7 +97650,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemCount", "ApiReferenceLink": null, @@ -97694,7 +97694,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemPictureContent", "ApiReferenceLink": null, @@ -97709,7 +97709,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemPictureCount", "ApiReferenceLink": null, @@ -97768,7 +97768,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalCount", "ApiReferenceLink": null, @@ -97832,7 +97832,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalLineCount", "ApiReferenceLink": null, @@ -97878,7 +97878,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentMethodCount", "ApiReferenceLink": null, @@ -97922,7 +97922,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentTermCount", "ApiReferenceLink": null, @@ -97966,7 +97966,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPictureContent", "ApiReferenceLink": null, @@ -97981,7 +97981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPictureCount", "ApiReferenceLink": null, @@ -98025,7 +98025,7 @@ "OutputType": "IMicrosoftGraphPurchaseInvoice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceCount", "ApiReferenceLink": null, @@ -98104,7 +98104,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineCount", "ApiReferenceLink": null, @@ -98187,7 +98187,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent", "ApiReferenceLink": null, @@ -98204,7 +98204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureCount", "ApiReferenceLink": null, @@ -98310,7 +98310,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent", "ApiReferenceLink": null, @@ -98325,7 +98325,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureCount", "ApiReferenceLink": null, @@ -98369,7 +98369,7 @@ "OutputType": "IMicrosoftGraphSalesCreditMemo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCount", "ApiReferenceLink": null, @@ -98488,7 +98488,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent", "ApiReferenceLink": null, @@ -98503,7 +98503,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureCount", "ApiReferenceLink": null, @@ -98577,7 +98577,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineCount", "ApiReferenceLink": null, @@ -98651,7 +98651,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent", "ApiReferenceLink": null, @@ -98666,7 +98666,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureCount", "ApiReferenceLink": null, @@ -98740,7 +98740,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineCount", "ApiReferenceLink": null, @@ -98814,7 +98814,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent", "ApiReferenceLink": null, @@ -98829,7 +98829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureCount", "ApiReferenceLink": null, @@ -98873,7 +98873,7 @@ "OutputType": "IMicrosoftGraphSalesInvoice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCount", "ApiReferenceLink": null, @@ -98992,7 +98992,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent", "ApiReferenceLink": null, @@ -99007,7 +99007,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureCount", "ApiReferenceLink": null, @@ -99086,7 +99086,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineCount", "ApiReferenceLink": null, @@ -99169,7 +99169,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent", "ApiReferenceLink": null, @@ -99186,7 +99186,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureCount", "ApiReferenceLink": null, @@ -99262,7 +99262,7 @@ "OutputType": "IMicrosoftGraphSalesOrder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCount", "ApiReferenceLink": null, @@ -99381,7 +99381,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPictureContent", "ApiReferenceLink": null, @@ -99396,7 +99396,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPictureCount", "ApiReferenceLink": null, @@ -99475,7 +99475,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineCount", "ApiReferenceLink": null, @@ -99558,7 +99558,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPictureContent", "ApiReferenceLink": null, @@ -99575,7 +99575,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPictureCount", "ApiReferenceLink": null, @@ -99636,7 +99636,7 @@ "OutputType": "IMicrosoftGraphSalesQuote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCount", "ApiReferenceLink": null, @@ -99755,7 +99755,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPictureContent", "ApiReferenceLink": null, @@ -99770,7 +99770,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPictureCount", "ApiReferenceLink": null, @@ -99849,7 +99849,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineCount", "ApiReferenceLink": null, @@ -99932,7 +99932,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPictureContent", "ApiReferenceLink": null, @@ -99949,7 +99949,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPictureCount", "ApiReferenceLink": null, @@ -100025,7 +100025,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyShipmentMethodCount", "ApiReferenceLink": null, @@ -100069,7 +100069,7 @@ "OutputType": "IMicrosoftGraphTaxArea" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxAreaCount", "ApiReferenceLink": null, @@ -100113,7 +100113,7 @@ "OutputType": "IMicrosoftGraphTaxGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxGroupCount", "ApiReferenceLink": null, @@ -100157,7 +100157,7 @@ "OutputType": "IMicrosoftGraphUnitOfMeasure" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyUnitOfMeasureCount", "ApiReferenceLink": null, @@ -100201,7 +100201,7 @@ "OutputType": "IMicrosoftGraphVendor" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorCount", "ApiReferenceLink": null, @@ -100290,7 +100290,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPictureContent", "ApiReferenceLink": null, @@ -100305,7 +100305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPictureCount", "ApiReferenceLink": null, @@ -100462,7 +100462,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupAcceptedSenderByRef", "ApiReferenceLink": null, @@ -100493,7 +100493,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupAcceptedSenderCount", "ApiReferenceLink": null, @@ -100579,7 +100579,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupAppRoleAssignmentCount", "ApiReferenceLink": null, @@ -100619,7 +100619,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -100853,7 +100853,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupCalendarPermissionCount", "ApiReferenceLink": null, @@ -100868,7 +100868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupCalendarSchedule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-beta", @@ -100994,7 +100994,7 @@ "OutputType": "IMicrosoftGraphConversation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationCount", "ApiReferenceLink": null, @@ -101137,7 +101137,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadCount", "ApiReferenceLink": null, @@ -101344,7 +101344,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostAttachmentCount", "ApiReferenceLink": null, @@ -101392,7 +101392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostCount", "ApiReferenceLink": null, @@ -101469,7 +101469,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostExtensionCount", "ApiReferenceLink": null, @@ -101513,7 +101513,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachmentCount", "ApiReferenceLink": null, @@ -101557,7 +101557,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtensionCount", "ApiReferenceLink": null, @@ -101601,7 +101601,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMentionCount", "ApiReferenceLink": null, @@ -101645,7 +101645,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostMentionCount", "ApiReferenceLink": null, @@ -101660,7 +101660,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupCount", "ApiReferenceLink": null, @@ -101970,7 +101970,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveBundleContent", "ApiReferenceLink": null, @@ -101985,7 +101985,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveBundleContentStream", "ApiReferenceLink": null, @@ -102000,7 +102000,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveBundleCount", "ApiReferenceLink": null, @@ -102059,7 +102059,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -102074,7 +102074,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveCount", "ApiReferenceLink": null, @@ -102182,7 +102182,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -102226,7 +102226,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowingContent", "ApiReferenceLink": null, @@ -102241,7 +102241,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowingContentStream", "ApiReferenceLink": null, @@ -102256,7 +102256,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowingCount", "ApiReferenceLink": null, @@ -102387,7 +102387,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -102461,7 +102461,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChildContent", "ApiReferenceLink": null, @@ -102476,7 +102476,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChildContentStream", "ApiReferenceLink": null, @@ -102491,7 +102491,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChildCount", "ApiReferenceLink": null, @@ -102506,7 +102506,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemContent", "ApiReferenceLink": null, @@ -102521,7 +102521,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemContentStream", "ApiReferenceLink": null, @@ -102536,7 +102536,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCount", "ApiReferenceLink": null, @@ -102595,7 +102595,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -102671,7 +102671,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -102735,7 +102735,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -102855,7 +102855,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -102899,7 +102899,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -102944,7 +102944,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -102959,7 +102959,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -103018,7 +103018,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemVersionCount", "ApiReferenceLink": null, @@ -103077,7 +103077,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemPermissionCount", "ApiReferenceLink": null, @@ -103136,7 +103136,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemSubscriptionCount", "ApiReferenceLink": null, @@ -103180,7 +103180,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemThumbnailCount", "ApiReferenceLink": null, @@ -103224,7 +103224,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemVersionContent", "ApiReferenceLink": null, @@ -103239,7 +103239,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemVersionCount", "ApiReferenceLink": null, @@ -103303,7 +103303,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -103378,7 +103378,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListColumnCount", "ApiReferenceLink": null, @@ -103466,7 +103466,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnCount", "ApiReferenceLink": null, @@ -103510,7 +103510,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -103554,7 +103554,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -103599,7 +103599,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeCount", "ApiReferenceLink": null, @@ -103658,7 +103658,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -103805,7 +103805,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -103866,7 +103866,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -103911,7 +103911,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -103926,7 +103926,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -103985,7 +103985,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemVersionCount", "ApiReferenceLink": null, @@ -104044,7 +104044,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListOperationCount", "ApiReferenceLink": null, @@ -104088,7 +104088,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListSubscriptionCount", "ApiReferenceLink": null, @@ -104205,7 +104205,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -104279,7 +104279,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChildContent", "ApiReferenceLink": null, @@ -104294,7 +104294,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChildContentStream", "ApiReferenceLink": null, @@ -104309,7 +104309,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChildCount", "ApiReferenceLink": null, @@ -104324,7 +104324,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootContent", "ApiReferenceLink": null, @@ -104339,7 +104339,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootContentStream", "ApiReferenceLink": null, @@ -104398,7 +104398,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -104474,7 +104474,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -104533,7 +104533,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -104651,7 +104651,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -104695,7 +104695,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -104740,7 +104740,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -104755,7 +104755,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -104814,7 +104814,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemVersionCount", "ApiReferenceLink": null, @@ -104873,7 +104873,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootPermissionCount", "ApiReferenceLink": null, @@ -104932,7 +104932,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootSubscriptionCount", "ApiReferenceLink": null, @@ -104976,7 +104976,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootThumbnailCount", "ApiReferenceLink": null, @@ -105020,7 +105020,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootVersionContent", "ApiReferenceLink": null, @@ -105035,7 +105035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootVersionCount", "ApiReferenceLink": null, @@ -105079,7 +105079,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecialContent", "ApiReferenceLink": null, @@ -105094,7 +105094,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecialContentStream", "ApiReferenceLink": null, @@ -105109,7 +105109,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecialCount", "ApiReferenceLink": null, @@ -105187,7 +105187,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEndpointCount", "ApiReferenceLink": null, @@ -105327,7 +105327,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventAttachmentCount", "ApiReferenceLink": null, @@ -105357,7 +105357,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventCount", "ApiReferenceLink": null, @@ -105487,7 +105487,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachmentCount", "ApiReferenceLink": null, @@ -105517,7 +105517,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceCount", "ApiReferenceLink": null, @@ -105561,7 +105561,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtensionCount", "ApiReferenceLink": null, @@ -105634,7 +105634,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachmentCount", "ApiReferenceLink": null, @@ -105664,7 +105664,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceCount", "ApiReferenceLink": null, @@ -105708,7 +105708,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtensionCount", "ApiReferenceLink": null, @@ -105752,7 +105752,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExtensionCount", "ApiReferenceLink": null, @@ -105842,7 +105842,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceAttachmentCount", "ApiReferenceLink": null, @@ -105872,7 +105872,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceCount", "ApiReferenceLink": null, @@ -105962,7 +105962,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachmentCount", "ApiReferenceLink": null, @@ -105992,7 +105992,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceCount", "ApiReferenceLink": null, @@ -106036,7 +106036,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtensionCount", "ApiReferenceLink": null, @@ -106080,7 +106080,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExtensionCount", "ApiReferenceLink": null, @@ -106124,7 +106124,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupExtensionCount", "ApiReferenceLink": null, @@ -106235,7 +106235,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupLifecyclePolicyCount", "ApiReferenceLink": null, @@ -106495,7 +106495,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberByRef", "ApiReferenceLink": null, @@ -106550,7 +106550,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberCount", "ApiReferenceLink": null, @@ -106606,7 +106606,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsApplication", "ApiReferenceLink": null, @@ -106621,7 +106621,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsDevice", "ApiReferenceLink": null, @@ -106636,7 +106636,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsGroup", "ApiReferenceLink": null, @@ -106651,7 +106651,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsOrgContact", "ApiReferenceLink": null, @@ -106666,7 +106666,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsServicePrincipal", "ApiReferenceLink": null, @@ -106681,7 +106681,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsUser", "ApiReferenceLink": null, @@ -106696,7 +106696,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -106794,7 +106794,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupMemberObject", "ApiReferenceLink": null, @@ -107028,7 +107028,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberOfCount", "ApiReferenceLink": null, @@ -107076,7 +107076,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -107091,7 +107091,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -107309,7 +107309,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCount", "ApiReferenceLink": null, @@ -107324,7 +107324,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsApplication", "ApiReferenceLink": null, @@ -107339,7 +107339,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsDevice", "ApiReferenceLink": null, @@ -107354,7 +107354,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsGroup", "ApiReferenceLink": null, @@ -107369,7 +107369,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsOrgContact", "ApiReferenceLink": null, @@ -107384,7 +107384,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsServicePrincipal", "ApiReferenceLink": null, @@ -107399,7 +107399,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsUser", "ApiReferenceLink": null, @@ -107525,7 +107525,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteNotebookCount", "ApiReferenceLink": null, @@ -107581,7 +107581,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupOnenoteNotebookFromWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-beta", @@ -107805,7 +107805,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteOperationCount", "ApiReferenceLink": null, @@ -107915,7 +107915,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenotePageContent", "ApiReferenceLink": null, @@ -107930,7 +107930,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenotePageCount", "ApiReferenceLink": null, @@ -107978,7 +107978,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteRecentNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-beta", @@ -108049,7 +108049,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteResourceContent", "ApiReferenceLink": null, @@ -108097,7 +108097,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteResourceCount", "ApiReferenceLink": null, @@ -108223,7 +108223,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteSectionCount", "ApiReferenceLink": null, @@ -108391,7 +108391,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteSectionGroupCount", "ApiReferenceLink": null, @@ -108780,7 +108780,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerByRef", "ApiReferenceLink": null, @@ -108835,7 +108835,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerCount", "ApiReferenceLink": null, @@ -108891,7 +108891,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsApplication", "ApiReferenceLink": null, @@ -108906,7 +108906,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsDevice", "ApiReferenceLink": null, @@ -108921,7 +108921,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsGroup", "ApiReferenceLink": null, @@ -108936,7 +108936,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsOrgContact", "ApiReferenceLink": null, @@ -108951,7 +108951,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsServicePrincipal", "ApiReferenceLink": null, @@ -108966,7 +108966,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsUser", "ApiReferenceLink": null, @@ -108981,7 +108981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupPasswordSingleSignOnCredential", "ApiReferenceLink": null, @@ -109083,7 +109083,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPermissionGrantCount", "ApiReferenceLink": null, @@ -109212,7 +109212,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPhotoContent", "ApiReferenceLink": null, @@ -109391,7 +109391,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanCount", "ApiReferenceLink": null, @@ -109562,7 +109562,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupRejectedSenderByRef", "ApiReferenceLink": null, @@ -109593,7 +109593,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupRejectedSenderCount", "ApiReferenceLink": null, @@ -109720,7 +109720,7 @@ "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSettingCount", "ApiReferenceLink": null, @@ -109885,7 +109885,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityCount", "ApiReferenceLink": null, @@ -109915,7 +109915,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContent", "ApiReferenceLink": null, @@ -109930,7 +109930,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContentStream", "ApiReferenceLink": null, @@ -109945,7 +109945,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -110005,7 +110005,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteByPath", "ApiReferenceLink": null, @@ -110049,7 +110049,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteColumnCount", "ApiReferenceLink": null, @@ -110157,7 +110157,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -110203,7 +110203,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnCount", "ApiReferenceLink": null, @@ -110247,7 +110247,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -110291,7 +110291,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -110336,7 +110336,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeCount", "ApiReferenceLink": null, @@ -110351,7 +110351,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteCount", "ApiReferenceLink": null, @@ -110410,7 +110410,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -110484,7 +110484,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteDriveCount", "ApiReferenceLink": null, @@ -110528,7 +110528,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteExternalColumnCount", "ApiReferenceLink": null, @@ -110838,7 +110838,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetGraphBPrePathByPath", "ApiReferenceLink": null, @@ -110946,7 +110946,7 @@ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKeyCount", "ApiReferenceLink": null, @@ -110990,7 +110990,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicyCount", "ApiReferenceLink": null, @@ -111049,7 +111049,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabelCount", "ApiReferenceLink": null, @@ -111093,7 +111093,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelCount", "ApiReferenceLink": null, @@ -111137,7 +111137,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabelCount", "ApiReferenceLink": null, @@ -111196,7 +111196,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestCount", "ApiReferenceLink": null, @@ -111240,7 +111240,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResultCount", "ApiReferenceLink": null, @@ -111284,7 +111284,7 @@ "OutputType": "IMicrosoftGraphBaseItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteItemCount", "ApiReferenceLink": null, @@ -111343,7 +111343,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -111407,7 +111407,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -111496,7 +111496,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListColumnCount", "ApiReferenceLink": null, @@ -111584,7 +111584,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnCount", "ApiReferenceLink": null, @@ -111628,7 +111628,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -111672,7 +111672,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -111717,7 +111717,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeCount", "ApiReferenceLink": null, @@ -111732,7 +111732,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListCount", "ApiReferenceLink": null, @@ -111791,7 +111791,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -111894,7 +111894,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityCount", "ApiReferenceLink": null, @@ -111924,7 +111924,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityDriveItemContent", "ApiReferenceLink": null, @@ -111939,7 +111939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityDriveItemContentStream", "ApiReferenceLink": null, @@ -112028,7 +112028,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -112089,7 +112089,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -112134,7 +112134,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDriveItemContent", "ApiReferenceLink": null, @@ -112149,7 +112149,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -112208,7 +112208,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemVersionCount", "ApiReferenceLink": null, @@ -112267,7 +112267,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListOperationCount", "ApiReferenceLink": null, @@ -112311,7 +112311,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListSubscriptionCount", "ApiReferenceLink": null, @@ -112370,7 +112370,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookCount", "ApiReferenceLink": null, @@ -112414,7 +112414,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionCount", "ApiReferenceLink": null, @@ -112461,7 +112461,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupCount", "ApiReferenceLink": null, @@ -112537,7 +112537,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionCount", "ApiReferenceLink": null, @@ -112581,7 +112581,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -112596,7 +112596,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageCount", "ApiReferenceLink": null, @@ -112700,7 +112700,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageContent", "ApiReferenceLink": null, @@ -112715,7 +112715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageCount", "ApiReferenceLink": null, @@ -112819,7 +112819,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteOperationCount", "ApiReferenceLink": null, @@ -112863,7 +112863,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePageContent", "ApiReferenceLink": null, @@ -112878,7 +112878,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePageCount", "ApiReferenceLink": null, @@ -112952,7 +112952,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteResourceContent", "ApiReferenceLink": null, @@ -112967,7 +112967,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteResourceCount", "ApiReferenceLink": null, @@ -113011,7 +113011,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionCount", "ApiReferenceLink": null, @@ -113058,7 +113058,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupCount", "ApiReferenceLink": null, @@ -113134,7 +113134,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionCount", "ApiReferenceLink": null, @@ -113178,7 +113178,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -113193,7 +113193,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageCount", "ApiReferenceLink": null, @@ -113297,7 +113297,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -113312,7 +113312,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPageCount", "ApiReferenceLink": null, @@ -113416,7 +113416,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOperationCount", "ApiReferenceLink": null, @@ -113562,7 +113562,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount", "ApiReferenceLink": null, @@ -113606,7 +113606,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount", "ApiReferenceLink": null, @@ -113621,7 +113621,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount", "ApiReferenceLink": null, @@ -113680,7 +113680,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount", "ApiReferenceLink": null, @@ -113739,7 +113739,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -113798,7 +113798,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -113842,7 +113842,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageWebPartCount", "ApiReferenceLink": null, @@ -113857,7 +113857,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageCount", "ApiReferenceLink": null, @@ -113872,7 +113872,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageCountAsSitePage", "ApiReferenceLink": null, @@ -113931,7 +113931,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -113990,7 +113990,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -114005,7 +114005,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", "ApiReferenceLink": null, @@ -114020,7 +114020,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", "ApiReferenceLink": null, @@ -114035,7 +114035,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", "ApiReferenceLink": null, @@ -114079,7 +114079,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePermissionCount", "ApiReferenceLink": null, @@ -114153,7 +114153,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -114197,7 +114197,7 @@ "OutputType": "IMicrosoftGraphRecycleBinItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCount", "ApiReferenceLink": null, @@ -114256,7 +114256,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -114315,7 +114315,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -114374,7 +114374,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -114433,7 +114433,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupCount", "ApiReferenceLink": null, @@ -114509,7 +114509,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildCount", "ApiReferenceLink": null, @@ -114558,7 +114558,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationCount", "ApiReferenceLink": null, @@ -114643,7 +114643,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetCount", "ApiReferenceLink": null, @@ -114702,7 +114702,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationCount", "ApiReferenceLink": null, @@ -114820,7 +114820,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildCount", "ApiReferenceLink": null, @@ -114864,7 +114864,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationCount", "ApiReferenceLink": null, @@ -114939,7 +114939,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermCount", "ApiReferenceLink": null, @@ -114983,7 +114983,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationCount", "ApiReferenceLink": null, @@ -115119,7 +115119,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildCount", "ApiReferenceLink": null, @@ -115168,7 +115168,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationCount", "ApiReferenceLink": null, @@ -115253,7 +115253,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetCount", "ApiReferenceLink": null, @@ -115344,7 +115344,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildCount", "ApiReferenceLink": null, @@ -115393,7 +115393,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationCount", "ApiReferenceLink": null, @@ -115478,7 +115478,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetCount", "ApiReferenceLink": null, @@ -115522,7 +115522,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationCount", "ApiReferenceLink": null, @@ -115640,7 +115640,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildCount", "ApiReferenceLink": null, @@ -115684,7 +115684,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationCount", "ApiReferenceLink": null, @@ -115759,7 +115759,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermCount", "ApiReferenceLink": null, @@ -115803,7 +115803,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationCount", "ApiReferenceLink": null, @@ -115907,7 +115907,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelationCount", "ApiReferenceLink": null, @@ -116025,7 +116025,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildCount", "ApiReferenceLink": null, @@ -116069,7 +116069,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationCount", "ApiReferenceLink": null, @@ -116144,7 +116144,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermCount", "ApiReferenceLink": null, @@ -116188,7 +116188,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationCount", "ApiReferenceLink": null, @@ -116292,7 +116292,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSubSiteCount", "ApiReferenceLink": null, @@ -116351,7 +116351,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelCount", "ApiReferenceLink": null, @@ -116381,7 +116381,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -116396,7 +116396,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -116440,7 +116440,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMemberCount", "ApiReferenceLink": null, @@ -116484,7 +116484,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageCount", "ApiReferenceLink": null, @@ -116530,7 +116530,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -116574,7 +116574,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReplyCount", "ApiReferenceLink": null, @@ -116620,7 +116620,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -116695,7 +116695,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -116710,7 +116710,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -116754,7 +116754,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelTabCount", "ApiReferenceLink": null, @@ -116813,7 +116813,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -116857,7 +116857,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamIncomingChannelCount", "ApiReferenceLink": null, @@ -116901,7 +116901,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledAppCount", "ApiReferenceLink": null, @@ -116975,7 +116975,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamMemberCount", "ApiReferenceLink": null, @@ -117019,7 +117019,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamOperationCount", "ApiReferenceLink": null, @@ -117063,7 +117063,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamOwnerCount", "ApiReferenceLink": null, @@ -117107,7 +117107,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamOwnerServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -117151,7 +117151,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPermissionGrantCount", "ApiReferenceLink": null, @@ -117181,7 +117181,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPhotoContent", "ApiReferenceLink": null, @@ -117226,7 +117226,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolderContent", "ApiReferenceLink": null, @@ -117241,7 +117241,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -117285,7 +117285,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMemberCount", "ApiReferenceLink": null, @@ -117329,7 +117329,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageCount", "ApiReferenceLink": null, @@ -117375,7 +117375,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -117419,7 +117419,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyCount", "ApiReferenceLink": null, @@ -117465,7 +117465,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -117540,7 +117540,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -117555,7 +117555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -117599,7 +117599,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelTabCount", "ApiReferenceLink": null, @@ -117673,7 +117673,7 @@ "OutputType": "IMicrosoftGraphDayNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleDayNoteCount", "ApiReferenceLink": null, @@ -117717,7 +117717,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequestCount", "ApiReferenceLink": null, @@ -117790,7 +117790,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequestCount", "ApiReferenceLink": null, @@ -117805,7 +117805,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShiftCount", "ApiReferenceLink": null, @@ -117849,7 +117849,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroupCount", "ApiReferenceLink": null, @@ -117893,7 +117893,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShiftCount", "ApiReferenceLink": null, @@ -117937,7 +117937,7 @@ "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinitionCount", "ApiReferenceLink": null, @@ -117981,7 +117981,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequestCount", "ApiReferenceLink": null, @@ -118025,7 +118025,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeCardCount", "ApiReferenceLink": null, @@ -118069,7 +118069,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffCount", "ApiReferenceLink": null, @@ -118113,7 +118113,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffReasonCount", "ApiReferenceLink": null, @@ -118157,7 +118157,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequestCount", "ApiReferenceLink": null, @@ -118201,7 +118201,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamTagCount", "ApiReferenceLink": null, @@ -118245,7 +118245,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamTagMemberCount", "ApiReferenceLink": null, @@ -118385,7 +118385,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadCount", "ApiReferenceLink": null, @@ -118592,7 +118592,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostAttachmentCount", "ApiReferenceLink": null, @@ -118640,7 +118640,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostCount", "ApiReferenceLink": null, @@ -118717,7 +118717,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostExtensionCount", "ApiReferenceLink": null, @@ -118761,7 +118761,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToAttachmentCount", "ApiReferenceLink": null, @@ -118805,7 +118805,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToExtensionCount", "ApiReferenceLink": null, @@ -118849,7 +118849,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToMentionCount", "ApiReferenceLink": null, @@ -118893,7 +118893,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostMentionCount", "ApiReferenceLink": null, @@ -119152,7 +119152,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCount", "ApiReferenceLink": null, @@ -119208,7 +119208,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsApplication", "ApiReferenceLink": null, @@ -119223,7 +119223,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsDevice", "ApiReferenceLink": null, @@ -119238,7 +119238,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsGroup", "ApiReferenceLink": null, @@ -119253,7 +119253,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsOrgContact", "ApiReferenceLink": null, @@ -119268,7 +119268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsServicePrincipal", "ApiReferenceLink": null, @@ -119283,7 +119283,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsUser", "ApiReferenceLink": null, @@ -119418,7 +119418,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -119466,7 +119466,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -119481,7 +119481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -119496,7 +119496,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaGroupUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -119540,7 +119540,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityApiConnectorCount", "ApiReferenceLink": null, @@ -119707,7 +119707,7 @@ "OutputType": "IMicrosoftGraphAuthenticationConditionApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplicationCount", "ApiReferenceLink": null, @@ -119766,7 +119766,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount", "ApiReferenceLink": null, @@ -119795,7 +119795,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef", "ApiReferenceLink": null, @@ -119809,7 +119809,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount", "ApiReferenceLink": null, @@ -119824,7 +119824,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef", "ApiReferenceLink": null, @@ -119853,7 +119853,7 @@ "OutputType": "IMicrosoftGraphAuthenticationConditionsApplications" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowCount", "ApiReferenceLink": null, @@ -119884,7 +119884,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow", "ApiReferenceLink": null, @@ -119961,7 +119961,7 @@ "OutputType": "IMicrosoftGraphAuthenticationConditionApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplicationCount", "ApiReferenceLink": null, @@ -119993,7 +119993,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp", "ApiReferenceLink": null, @@ -120008,7 +120008,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp", "ApiReferenceLink": null, @@ -120086,7 +120086,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventListenerCount", "ApiReferenceLink": null, @@ -120180,7 +120180,7 @@ "OutputType": "IMicrosoftGraphB2CIdentityUserFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowCount", "ApiReferenceLink": null, @@ -120241,7 +120241,7 @@ "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProviderByRef", "ApiReferenceLink": null, @@ -120255,7 +120255,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProviderCount", "ApiReferenceLink": null, @@ -120335,7 +120335,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageCount", "ApiReferenceLink": null, @@ -120430,7 +120430,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPageContent", "ApiReferenceLink": null, @@ -120462,7 +120462,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPageCount", "ApiReferenceLink": null, @@ -120557,7 +120557,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePageContent", "ApiReferenceLink": null, @@ -120589,7 +120589,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePageCount", "ApiReferenceLink": null, @@ -120684,7 +120684,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentCount", "ApiReferenceLink": null, @@ -120716,7 +120716,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-getorder?view=graph-rest-beta", @@ -120841,7 +120841,7 @@ "OutputType": "IMicrosoftGraphUserFlowApiConnectorConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowCount", "ApiReferenceLink": null, @@ -120902,7 +120902,7 @@ "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProviderByRef", "ApiReferenceLink": null, @@ -120916,7 +120916,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProviderCount", "ApiReferenceLink": null, @@ -120996,7 +120996,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguageCount", "ApiReferenceLink": null, @@ -121091,7 +121091,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent", "ApiReferenceLink": null, @@ -121123,7 +121123,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageCount", "ApiReferenceLink": null, @@ -121218,7 +121218,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageContent", "ApiReferenceLink": null, @@ -121250,7 +121250,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageCount", "ApiReferenceLink": null, @@ -121297,7 +121297,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef", "ApiReferenceLink": null, @@ -121327,7 +121327,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPostFederationSignupByRef", "ApiReferenceLink": null, @@ -121420,7 +121420,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentCount", "ApiReferenceLink": null, @@ -121452,7 +121452,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-getorder?view=graph-rest-beta", @@ -121545,7 +121545,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReferenceCount", "ApiReferenceLink": null, @@ -121619,7 +121619,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount", "ApiReferenceLink": null, @@ -121691,7 +121691,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount", "ApiReferenceLink": null, @@ -121706,7 +121706,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCount", "ApiReferenceLink": null, @@ -121749,7 +121749,7 @@ "OutputType": "IMicrosoftGraphNamedLocation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessNamedLocationCount", "ApiReferenceLink": null, @@ -121792,7 +121792,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessPolicyCount", "ApiReferenceLink": null, @@ -121835,7 +121835,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessTemplateCount", "ApiReferenceLink": null, @@ -121926,7 +121926,7 @@ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityCustomAuthenticationExtensionCount", "ApiReferenceLink": null, @@ -121986,7 +121986,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionCount", "ApiReferenceLink": null, @@ -122029,7 +122029,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsightCount", "ApiReferenceLink": null, @@ -122088,7 +122088,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewerCount", "ApiReferenceLink": null, @@ -122132,7 +122132,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionCount", "ApiReferenceLink": null, @@ -122176,7 +122176,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsightCount", "ApiReferenceLink": null, @@ -122235,7 +122235,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageCount", "ApiReferenceLink": null, @@ -122279,7 +122279,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionCount", "ApiReferenceLink": null, @@ -122323,7 +122323,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsightCount", "ApiReferenceLink": null, @@ -122401,7 +122401,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionCount", "ApiReferenceLink": null, @@ -122541,7 +122541,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount", "ApiReferenceLink": null, @@ -122573,7 +122573,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceCount", "ApiReferenceLink": null, @@ -122668,7 +122668,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount", "ApiReferenceLink": null, @@ -122729,7 +122729,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount", "ApiReferenceLink": null, @@ -122837,7 +122837,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageCount", "ApiReferenceLink": null, @@ -122932,7 +122932,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount", "ApiReferenceLink": null, @@ -123037,7 +123037,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionCount", "ApiReferenceLink": null, @@ -123080,7 +123080,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount", "ApiReferenceLink": null, @@ -123189,7 +123189,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestCount", "ApiReferenceLink": null, @@ -123327,7 +123327,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStepCount", "ApiReferenceLink": null, @@ -123342,7 +123342,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestCount", "ApiReferenceLink": null, @@ -123437,7 +123437,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCount", "ApiReferenceLink": null, @@ -123512,7 +123512,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -123590,7 +123590,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount", "ApiReferenceLink": null, @@ -123665,7 +123665,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -123724,7 +123724,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -123816,7 +123816,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount", "ApiReferenceLink": null, @@ -124097,7 +124097,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScopeCount", "ApiReferenceLink": null, @@ -124173,7 +124173,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -124251,7 +124251,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunCount", "ApiReferenceLink": null, @@ -124329,7 +124329,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount", "ApiReferenceLink": null, @@ -124405,7 +124405,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -124498,7 +124498,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount", "ApiReferenceLink": null, @@ -124574,7 +124574,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -124712,7 +124712,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskCount", "ApiReferenceLink": null, @@ -124807,7 +124807,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinitionCount", "ApiReferenceLink": null, @@ -124884,7 +124884,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount", "ApiReferenceLink": null, @@ -124960,7 +124960,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -125036,7 +125036,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportCount", "ApiReferenceLink": null, @@ -125144,7 +125144,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount", "ApiReferenceLink": null, @@ -125220,7 +125220,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -125313,7 +125313,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateCount", "ApiReferenceLink": null, @@ -125373,7 +125373,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskCount", "ApiReferenceLink": null, @@ -125417,7 +125417,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount", "ApiReferenceLink": null, @@ -125476,7 +125476,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -125552,7 +125552,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultCount", "ApiReferenceLink": null, @@ -125628,7 +125628,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -125752,7 +125752,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCount", "ApiReferenceLink": null, @@ -125828,7 +125828,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -125887,7 +125887,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -125965,7 +125965,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskCount", "ApiReferenceLink": null, @@ -126026,7 +126026,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount", "ApiReferenceLink": null, @@ -126085,7 +126085,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -126172,7 +126172,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFindingCount", "ApiReferenceLink": null, @@ -126230,7 +126230,7 @@ "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistributionCount", "ApiReferenceLink": null, @@ -126287,7 +126287,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFindingCount", "ApiReferenceLink": null, @@ -126345,7 +126345,7 @@ "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistributionCount", "ApiReferenceLink": null, @@ -126402,7 +126402,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFindingCount", "ApiReferenceLink": null, @@ -126460,7 +126460,7 @@ "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistributionCount", "ApiReferenceLink": null, @@ -126517,7 +126517,7 @@ "OutputType": "IMicrosoftGraphPermissionsRequestChange" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChangeCount", "ApiReferenceLink": null, @@ -126560,7 +126560,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalCount", "ApiReferenceLink": null, @@ -126603,7 +126603,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStepCount", "ApiReferenceLink": null, @@ -126689,7 +126689,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount", "ApiReferenceLink": null, @@ -126732,7 +126732,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStepCount", "ApiReferenceLink": null, @@ -126825,7 +126825,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount", "ApiReferenceLink": null, @@ -126885,7 +126885,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -126978,7 +126978,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount", "ApiReferenceLink": null, @@ -127038,7 +127038,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -127161,7 +127161,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount", "ApiReferenceLink": null, @@ -127221,7 +127221,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -127329,7 +127329,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount", "ApiReferenceLink": null, @@ -127389,7 +127389,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -127467,7 +127467,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount", "ApiReferenceLink": null, @@ -127527,7 +127527,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -127635,7 +127635,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount", "ApiReferenceLink": null, @@ -127695,7 +127695,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -127883,7 +127883,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfigurationCount", "ApiReferenceLink": null, @@ -127914,7 +127914,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertCount", "ApiReferenceLink": null, @@ -128010,7 +128010,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinitionCount", "ApiReferenceLink": null, @@ -128104,7 +128104,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertIncident" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncidentCount", "ApiReferenceLink": null, @@ -128182,7 +128182,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperationCount", "ApiReferenceLink": null, @@ -128257,7 +128257,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptanceCount", "ApiReferenceLink": null, @@ -128273,7 +128273,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementCount", "ApiReferenceLink": null, @@ -128316,7 +128316,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileCount", "ApiReferenceLink": null, @@ -128360,7 +128360,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationCount", "ApiReferenceLink": null, @@ -128404,7 +128404,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount", "ApiReferenceLink": null, @@ -128448,7 +128448,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersionCount", "ApiReferenceLink": null, @@ -128526,7 +128526,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityProviderCount", "ApiReferenceLink": null, @@ -128683,7 +128683,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityUserFlowAttributeCount", "ApiReferenceLink": null, @@ -128714,7 +128714,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityUserFlowCount", "ApiReferenceLink": null, @@ -128836,7 +128836,7 @@ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKeyCount", "ApiReferenceLink": null, @@ -128896,7 +128896,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicyCount", "ApiReferenceLink": null, @@ -128987,7 +128987,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionPolicyLabelCount", "ApiReferenceLink": null, @@ -129018,7 +129018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionSensitivityLabelCount", "ApiReferenceLink": null, @@ -129032,7 +129032,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionSensitivityLabelSublabelCount", "ApiReferenceLink": null, @@ -129124,7 +129124,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestCount", "ApiReferenceLink": null, @@ -129184,7 +129184,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResultCount", "ApiReferenceLink": null, @@ -129228,7 +129228,7 @@ "OutputType": "IMicrosoftGraphInvitation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInvitationCount", "ApiReferenceLink": null, @@ -129271,7 +129271,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -129315,7 +129315,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserSponsorCount", "ApiReferenceLink": null, @@ -129409,7 +129409,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOauth2PermissionGrantCount", "ApiReferenceLink": null, @@ -129545,7 +129545,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentCount", "ApiReferenceLink": null, @@ -129620,7 +129620,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgentCount", "ApiReferenceLink": null, @@ -129635,7 +129635,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupByRef", "ApiReferenceLink": null, @@ -129650,7 +129650,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupCount", "ApiReferenceLink": null, @@ -129712,7 +129712,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", "ApiReferenceLink": null, @@ -129726,7 +129726,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupCount", "ApiReferenceLink": null, @@ -129741,7 +129741,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceCount", "ApiReferenceLink": null, @@ -129785,7 +129785,7 @@ "OutputType": "IMicrosoftGraphConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorCount", "ApiReferenceLink": null, @@ -129888,7 +129888,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationCount", "ApiReferenceLink": null, @@ -129903,7 +129903,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo", "ApiReferenceLink": null, @@ -129918,7 +129918,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupCount", "ApiReferenceLink": null, @@ -129947,7 +129947,7 @@ "OutputType": "IMicrosoftGraphConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef", "ApiReferenceLink": null, @@ -129961,7 +129961,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberCount", "ApiReferenceLink": null, @@ -129990,7 +129990,7 @@ "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOfCount", "ApiReferenceLink": null, @@ -130005,7 +130005,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileCount", "ApiReferenceLink": null, @@ -130062,7 +130062,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef", "ApiReferenceLink": null, @@ -130076,7 +130076,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupCount", "ApiReferenceLink": null, @@ -130091,7 +130091,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceCount", "ApiReferenceLink": null, @@ -130297,7 +130297,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBranding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingBackgroundImage", "ApiReferenceLink": null, @@ -130312,7 +130312,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingBannerLogo", "ApiReferenceLink": null, @@ -130327,7 +130327,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingCustomCss", "ApiReferenceLink": null, @@ -130342,7 +130342,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingFavicon", "ApiReferenceLink": null, @@ -130357,7 +130357,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingHeaderLogo", "ApiReferenceLink": null, @@ -130483,7 +130483,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalizationBackgroundImage", "ApiReferenceLink": null, @@ -130515,7 +130515,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalizationBannerLogo", "ApiReferenceLink": null, @@ -130547,7 +130547,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalizationCount", "ApiReferenceLink": null, @@ -130603,7 +130603,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalizationCustomCss", "ApiReferenceLink": null, @@ -130635,7 +130635,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalizationFavicon", "ApiReferenceLink": null, @@ -130667,7 +130667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalizationHeaderLogo", "ApiReferenceLink": null, @@ -130699,7 +130699,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogo", "ApiReferenceLink": null, @@ -130731,7 +130731,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogoDark", "ApiReferenceLink": null, @@ -130763,7 +130763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingSquareLogo", "ApiReferenceLink": null, @@ -130778,7 +130778,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingSquareLogoDark", "ApiReferenceLink": null, @@ -130793,7 +130793,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaOrganizationById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -130871,7 +130871,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfigurationCount", "ApiReferenceLink": null, @@ -130903,7 +130903,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationCount", "ApiReferenceLink": null, @@ -131019,7 +131019,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationExtensionCount", "ApiReferenceLink": null, @@ -131034,7 +131034,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaOrganizationMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -131051,7 +131051,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaOrganizationMemberObject", "ApiReferenceLink": null, @@ -131243,7 +131243,7 @@ "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaOrganizationUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -131345,7 +131345,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListRoomCount", "ApiReferenceLink": null, @@ -131389,7 +131389,7 @@ "OutputType": "IMicrosoftGraphWorkspace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListWorkspaceCount", "ApiReferenceLink": null, @@ -131404,7 +131404,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceCount", "ApiReferenceLink": null, @@ -131418,7 +131418,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceCountAsRoom", "ApiReferenceLink": null, @@ -131432,7 +131432,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceCountAsRoomList", "ApiReferenceLink": null, @@ -131587,7 +131587,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerBucketCount", "ApiReferenceLink": null, @@ -131966,7 +131966,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerPlanCount", "ApiReferenceLink": null, @@ -132281,7 +132281,7 @@ "OutputType": "IMicrosoftGraphPlannerRoster" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerRosterCount", "ApiReferenceLink": null, @@ -132390,7 +132390,7 @@ "OutputType": "IMicrosoftGraphPlannerRosterMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerRosterMemberCount", "ApiReferenceLink": null, @@ -132500,7 +132500,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerRosterPlanCount", "ApiReferenceLink": null, @@ -132803,7 +132803,7 @@ "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerTaskCount", "ApiReferenceLink": null, @@ -133164,7 +133164,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyToCount", "ApiReferenceLink": null, @@ -133179,7 +133179,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyCount", "ApiReferenceLink": null, @@ -133406,7 +133406,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAppManagementPolicyApplyToCount", "ApiReferenceLink": null, @@ -133454,7 +133454,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAppManagementPolicyCount", "ApiReferenceLink": null, @@ -133567,7 +133567,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount", "ApiReferenceLink": null, @@ -133689,7 +133689,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfigurationCount", "ApiReferenceLink": null, @@ -133704,7 +133704,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCount", "ApiReferenceLink": null, @@ -133789,7 +133789,7 @@ "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicyCount", "ApiReferenceLink": null, @@ -133849,7 +133849,7 @@ "OutputType": "IMicrosoftGraphDefaultUserRoleOverride" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverrideCount", "ApiReferenceLink": null, @@ -134027,7 +134027,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyToCount", "ApiReferenceLink": null, @@ -134083,7 +134083,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyClaimMappingPolicyCount", "ApiReferenceLink": null, @@ -134122,7 +134122,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyConditionalAccessPolicyCount", "ApiReferenceLink": null, @@ -134261,7 +134261,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerCount", "ApiReferenceLink": null, @@ -134549,7 +134549,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyToByRef", "ApiReferenceLink": null, @@ -134563,7 +134563,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyToCount", "ApiReferenceLink": null, @@ -134578,7 +134578,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicyCount", "ApiReferenceLink": null, @@ -134755,7 +134755,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyToCount", "ApiReferenceLink": null, @@ -134811,7 +134811,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyCount", "ApiReferenceLink": null, @@ -134927,7 +134927,7 @@ "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicyCount", "ApiReferenceLink": null, @@ -134989,7 +134989,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupByRef", "ApiReferenceLink": null, @@ -135020,7 +135020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupCount", "ApiReferenceLink": null, @@ -135066,7 +135066,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -135144,7 +135144,7 @@ "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyCount", "ApiReferenceLink": null, @@ -135206,7 +135206,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupByRef", "ApiReferenceLink": null, @@ -135237,7 +135237,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupCount", "ApiReferenceLink": null, @@ -135283,7 +135283,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -135361,7 +135361,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicyCount", "ApiReferenceLink": null, @@ -135438,7 +135438,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicyExcludeCount", "ApiReferenceLink": null, @@ -135516,7 +135516,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicyIncludeCount", "ApiReferenceLink": null, @@ -135770,7 +135770,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignmentCount", "ApiReferenceLink": null, @@ -135840,7 +135840,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyCount", "ApiReferenceLink": null, @@ -135965,7 +135965,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRuleCount", "ApiReferenceLink": null, @@ -136132,7 +136132,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyRuleCount", "ApiReferenceLink": null, @@ -136217,7 +136217,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyCount", "ApiReferenceLink": null, @@ -136260,7 +136260,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExcludeCount", "ApiReferenceLink": null, @@ -136304,7 +136304,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyIncludeCount", "ApiReferenceLink": null, @@ -136468,7 +136468,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyToCount", "ApiReferenceLink": null, @@ -136524,7 +136524,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenIssuancePolicyCount", "ApiReferenceLink": null, @@ -136712,7 +136712,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyToCount", "ApiReferenceLink": null, @@ -136768,7 +136768,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenLifetimePolicyCount", "ApiReferenceLink": null, @@ -136884,7 +136884,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintConnectorCount", "ApiReferenceLink": null, @@ -136969,7 +136969,7 @@ "OutputType": "IMicrosoftGraphPrintOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintOperationCount", "ApiReferenceLink": null, @@ -137086,7 +137086,7 @@ "OutputType": "IMicrosoftGraphPrinter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterCapability", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-getcapabilities?view=graph-rest-beta", @@ -137172,7 +137172,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterConnectorCount", "ApiReferenceLink": null, @@ -137204,7 +137204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterCount", "ApiReferenceLink": null, @@ -137402,7 +137402,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobCount", "ApiReferenceLink": null, @@ -137544,7 +137544,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobDocumentContent", "ApiReferenceLink": null, @@ -137592,7 +137592,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobDocumentCount", "ApiReferenceLink": null, @@ -137636,7 +137636,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTaskCount", "ApiReferenceLink": null, @@ -137729,7 +137729,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroupByRef", "ApiReferenceLink": null, @@ -137743,7 +137743,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroupCount", "ApiReferenceLink": null, @@ -137772,7 +137772,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -137801,7 +137801,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserByRef", "ApiReferenceLink": null, @@ -137815,7 +137815,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserCount", "ApiReferenceLink": null, @@ -137859,7 +137859,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -137874,7 +137874,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareCount", "ApiReferenceLink": null, @@ -137944,7 +137944,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobCount", "ApiReferenceLink": null, @@ -137988,7 +137988,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobDocumentContent", "ApiReferenceLink": null, @@ -138003,7 +138003,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobDocumentCount", "ApiReferenceLink": null, @@ -138047,7 +138047,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTaskCount", "ApiReferenceLink": null, @@ -138186,7 +138186,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterTaskTriggerCount", "ApiReferenceLink": null, @@ -138608,7 +138608,7 @@ "OutputType": "IMicrosoftGraphPrintService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintServiceCount", "ApiReferenceLink": null, @@ -139158,7 +139158,7 @@ "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintServiceEndpointCount", "ApiReferenceLink": null, @@ -139452,7 +139452,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedGroupByRef", "ApiReferenceLink": null, @@ -139483,7 +139483,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedGroupCount", "ApiReferenceLink": null, @@ -139529,7 +139529,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -139575,7 +139575,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedUserByRef", "ApiReferenceLink": null, @@ -139606,7 +139606,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedUserCount", "ApiReferenceLink": null, @@ -139667,7 +139667,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -139682,7 +139682,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareCount", "ApiReferenceLink": null, @@ -139880,7 +139880,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobCount", "ApiReferenceLink": null, @@ -139989,7 +139989,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobDocumentContent", "ApiReferenceLink": null, @@ -140004,7 +140004,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobDocumentCount", "ApiReferenceLink": null, @@ -140048,7 +140048,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobTaskCount", "ApiReferenceLink": null, @@ -140164,7 +140164,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionCount", "ApiReferenceLink": null, @@ -140207,7 +140207,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionTaskCount", "ApiReferenceLink": null, @@ -140329,7 +140329,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverCount", "ApiReferenceLink": null, @@ -140373,7 +140373,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -140417,7 +140417,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorCount", "ApiReferenceLink": null, @@ -140461,7 +140461,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -140476,7 +140476,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCount", "ApiReferenceLink": null, @@ -140553,7 +140553,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestNoteCount", "ApiReferenceLink": null, @@ -140629,7 +140629,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessCount", "ApiReferenceLink": null, @@ -140672,7 +140672,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceCount", "ApiReferenceLink": null, @@ -140731,7 +140731,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentCount", "ApiReferenceLink": null, @@ -140790,7 +140790,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestCount", "ApiReferenceLink": null, @@ -140984,7 +140984,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionCount", "ApiReferenceLink": null, @@ -141058,7 +141058,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingCount", "ApiReferenceLink": null, @@ -141162,7 +141162,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentCount", "ApiReferenceLink": null, @@ -141221,7 +141221,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestCount", "ApiReferenceLink": null, @@ -141355,7 +141355,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionCount", "ApiReferenceLink": null, @@ -141429,7 +141429,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSettingCount", "ApiReferenceLink": null, @@ -141503,7 +141503,7 @@ "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalCount", "ApiReferenceLink": null, @@ -141576,7 +141576,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignmentCount", "ApiReferenceLink": null, @@ -141650,7 +141650,7 @@ "OutputType": "IMicrosoftGraphPrivilegedOperationEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedOperationEventCount", "ApiReferenceLink": null, @@ -141693,7 +141693,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentCount", "ApiReferenceLink": null, @@ -141755,7 +141755,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestCount", "ApiReferenceLink": null, @@ -141830,7 +141830,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignmentCount", "ApiReferenceLink": null, @@ -141919,7 +141919,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignmentCount", "ApiReferenceLink": null, @@ -141964,7 +141964,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleCount", "ApiReferenceLink": null, @@ -142138,7 +142138,7 @@ "OutputType": "IMicrosoftGraphProgramControl" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgramControlCount", "ApiReferenceLink": null, @@ -142236,7 +142236,7 @@ "OutputType": "IMicrosoftGraphProgramControlType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgramControlTypeCount", "ApiReferenceLink": null, @@ -142267,7 +142267,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgramCount", "ApiReferenceLink": null, @@ -142327,7 +142327,7 @@ "OutputType": "IMicrosoftGraphAppCredentialSignInActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAppCredentialSignInActivityCount", "ApiReferenceLink": null, @@ -142370,7 +142370,7 @@ "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportApplicationSignInDetailedSummaryCount", "ApiReferenceLink": null, @@ -142384,7 +142384,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAttackSimulationRepeatOffender", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getattacksimulationrepeatoffenders?view=graph-rest-beta", @@ -142398,7 +142398,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAttackSimulationTrainingUserCoverage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getattacksimulationtrainingusercoverage?view=graph-rest-beta", @@ -142412,7 +142412,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAttackSimulationUserCoverage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getattacksimulationsimulationusercoverage?view=graph-rest-beta", @@ -142503,7 +142503,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetailCount", "ApiReferenceLink": null, @@ -142549,7 +142549,7 @@ "OutputType": "IMicrosoftGraphApplicationSignInSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportBrowserDistributionUserCount", "ApiReferenceLink": null, @@ -142564,7 +142564,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportBrowserUserCount", "ApiReferenceLink": null, @@ -142579,7 +142579,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportBrowserUserDetail", "ApiReferenceLink": null, @@ -142652,7 +142652,7 @@ "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportCredentialUserRegistrationDetailCount", "ApiReferenceLink": null, @@ -142724,7 +142724,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByPrinterCount", "ApiReferenceLink": null, @@ -142767,7 +142767,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByUserCount", "ApiReferenceLink": null, @@ -142781,7 +142781,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageCount", "ApiReferenceLink": null, @@ -142824,7 +142824,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinterCount", "ApiReferenceLink": null, @@ -142867,7 +142867,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUserCount", "ApiReferenceLink": null, @@ -142881,7 +142881,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDeviceConfigurationDeviceActivity", "ApiReferenceLink": null, @@ -142895,7 +142895,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDeviceConfigurationUserActivity", "ApiReferenceLink": null, @@ -142909,7 +142909,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportEmailActivityCount", "ApiReferenceLink": null, @@ -142924,7 +142924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportEmailActivityUserCount", "ApiReferenceLink": null, @@ -142939,7 +142939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportEmailActivityUserDetail", "ApiReferenceLink": null, @@ -142956,7 +142956,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportEmailAppUsageAppUserCount", "ApiReferenceLink": null, @@ -142971,7 +142971,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportEmailAppUsageUserCount", "ApiReferenceLink": null, @@ -142986,7 +142986,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportEmailAppUsageUserDetail", "ApiReferenceLink": null, @@ -143003,7 +143003,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportEmailAppUsageVersionUserCount", "ApiReferenceLink": null, @@ -143018,7 +143018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportFormUserActivityCount", "ApiReferenceLink": null, @@ -143033,7 +143033,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportFormUserActivityUserCount", "ApiReferenceLink": null, @@ -143048,7 +143048,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportFormUserActivityUserDetail", "ApiReferenceLink": null, @@ -143065,7 +143065,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportGroupArchivedPrintJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getgrouparchivedprintjobs?view=graph-rest-beta", @@ -143080,7 +143080,7 @@ "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportM365AppPlatformUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appplatformusercounts?view=graph-rest-beta", @@ -143095,7 +143095,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportM365AppUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appusercounts?view=graph-rest-beta", @@ -143110,7 +143110,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportM365AppUserDetail", "ApiReferenceLink": null, @@ -143127,7 +143127,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMailboxUsageDetail", "ApiReferenceLink": null, @@ -143142,7 +143142,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMailboxUsageMailboxCount", "ApiReferenceLink": null, @@ -143157,7 +143157,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMailboxUsageQuotaStatusMailboxCount", "ApiReferenceLink": null, @@ -143172,7 +143172,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMailboxUsageStorage", "ApiReferenceLink": null, @@ -143187,7 +143187,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentAbandonmentDetail", "ApiReferenceLink": null, @@ -143202,7 +143202,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentAbandonmentSummary", "ApiReferenceLink": null, @@ -143217,7 +143217,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentFailureDetail", "ApiReferenceLink": null, @@ -143233,7 +143233,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentFailureTrend", "ApiReferenceLink": null, @@ -143247,7 +143247,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentTopFailure", "ApiReferenceLink": null, @@ -143292,7 +143292,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinterCount", "ApiReferenceLink": null, @@ -143335,7 +143335,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByUserCount", "ApiReferenceLink": null, @@ -143378,7 +143378,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinterCount", "ApiReferenceLink": null, @@ -143421,7 +143421,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUserCount", "ApiReferenceLink": null, @@ -143435,7 +143435,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365ActivationCount", "ApiReferenceLink": null, @@ -143449,7 +143449,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365ActivationUserCount", "ApiReferenceLink": null, @@ -143463,7 +143463,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365ActivationUserDetail", "ApiReferenceLink": null, @@ -143601,7 +143601,7 @@ "OutputType": "IMicrosoftGraphOffice365ServicesUserCounts" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOneDriveActivityFileCount", "ApiReferenceLink": null, @@ -143616,7 +143616,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOneDriveActivityUserCount", "ApiReferenceLink": null, @@ -143631,7 +143631,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOneDriveActivityUserDetail", "ApiReferenceLink": null, @@ -143648,7 +143648,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOneDriveUsageAccountCount", "ApiReferenceLink": null, @@ -143663,7 +143663,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOneDriveUsageAccountDetail", "ApiReferenceLink": null, @@ -143680,7 +143680,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOneDriveUsageFileCount", "ApiReferenceLink": null, @@ -143695,7 +143695,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOneDriveUsageStorage", "ApiReferenceLink": null, @@ -143767,7 +143767,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingManifestCount", "ApiReferenceLink": null, @@ -143810,7 +143810,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingOperationCount", "ApiReferenceLink": null, @@ -143894,7 +143894,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPrinterArchivedPrintJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getprinterarchivedprintjobs?view=graph-rest-beta", @@ -143938,7 +143938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSecurityAttackSimulationRepeatOffender", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationrepeatoffenders?view=graph-rest-beta", @@ -143952,7 +143952,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSecurityAttackSimulationTrainingUserCoverage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationtrainingusercoverage?view=graph-rest-beta", @@ -143966,7 +143966,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSecurityAttackSimulationUserCoverage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationsimulationusercoverage?view=graph-rest-beta", @@ -143994,7 +143994,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForConditionalAccessCompliantDeviceSignInSuccess", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsforconditionalaccesscompliantdevicessigninsuccess?view=graph-rest-beta", @@ -144009,7 +144009,7 @@ "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForConditionalAccessManagedDeviceSignInSuccess", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsforconditionalaccessmanageddevicessigninsuccess?view=graph-rest-beta", @@ -144024,7 +144024,7 @@ "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForMfaSignInFailure", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsformfasigninfailure?view=graph-rest-beta", @@ -144039,7 +144039,7 @@ "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForMfaSignInSuccess", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsformfasigninsuccess?view=graph-rest-beta", @@ -144054,7 +144054,7 @@ "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForSamlSignInSuccess", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsforsamlsigninsuccess?view=graph-rest-beta", @@ -144098,7 +144098,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalSignInActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportServicePrincipalSignInActivityCount", "ApiReferenceLink": null, @@ -144112,7 +144112,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSharePointActivityFileCount", "ApiReferenceLink": null, @@ -144127,7 +144127,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSharePointActivityPage", "ApiReferenceLink": null, @@ -144142,7 +144142,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSharePointActivityUserCount", "ApiReferenceLink": null, @@ -144157,7 +144157,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSharePointActivityUserDetail", "ApiReferenceLink": null, @@ -144174,7 +144174,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsageDetail", "ApiReferenceLink": null, @@ -144191,7 +144191,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsageFileCount", "ApiReferenceLink": null, @@ -144206,7 +144206,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsagePage", "ApiReferenceLink": null, @@ -144221,7 +144221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsageSiteCount", "ApiReferenceLink": null, @@ -144236,7 +144236,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsageStorage", "ApiReferenceLink": null, @@ -144251,7 +144251,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessActivityCount", "ApiReferenceLink": null, @@ -144266,7 +144266,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessActivityUserCount", "ApiReferenceLink": null, @@ -144281,7 +144281,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessActivityUserDetail", "ApiReferenceLink": null, @@ -144298,7 +144298,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageDistributionUserCount", "ApiReferenceLink": null, @@ -144313,7 +144313,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageUserCount", "ApiReferenceLink": null, @@ -144328,7 +144328,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageUserDetail", "ApiReferenceLink": null, @@ -144345,7 +144345,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityCount", "ApiReferenceLink": null, @@ -144360,7 +144360,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityMinuteCount", "ApiReferenceLink": null, @@ -144375,7 +144375,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityUserCount", "ApiReferenceLink": null, @@ -144390,7 +144390,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityCount", "ApiReferenceLink": null, @@ -144405,7 +144405,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityMinuteCount", "ApiReferenceLink": null, @@ -144420,7 +144420,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityUserCount", "ApiReferenceLink": null, @@ -144435,7 +144435,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityCount", "ApiReferenceLink": null, @@ -144450,7 +144450,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityMinuteCount", "ApiReferenceLink": null, @@ -144465,7 +144465,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityUserCount", "ApiReferenceLink": null, @@ -144508,7 +144508,7 @@ "OutputType": "IMicrosoftGraphAzureAdAuthentication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamActivityCount", "ApiReferenceLink": null, @@ -144523,7 +144523,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamActivityDetail", "ApiReferenceLink": null, @@ -144540,7 +144540,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamActivityDistributionCount", "ApiReferenceLink": null, @@ -144555,7 +144555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamCount", "ApiReferenceLink": null, @@ -144570,7 +144570,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageDistributionTotalUserCount", "ApiReferenceLink": null, @@ -144585,7 +144585,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageDistributionUserCount", "ApiReferenceLink": null, @@ -144600,7 +144600,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageTotalUserCount", "ApiReferenceLink": null, @@ -144615,7 +144615,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageUserCount", "ApiReferenceLink": null, @@ -144630,7 +144630,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageUserDetail", "ApiReferenceLink": null, @@ -144647,7 +144647,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityCount", "ApiReferenceLink": null, @@ -144662,7 +144662,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityDistributionTotalUserCount", "ApiReferenceLink": null, @@ -144677,7 +144677,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityDistributionUserCount", "ApiReferenceLink": null, @@ -144692,7 +144692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityTotalCount", "ApiReferenceLink": null, @@ -144707,7 +144707,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityTotalDistributionCount", "ApiReferenceLink": null, @@ -144722,7 +144722,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityTotalUserCount", "ApiReferenceLink": null, @@ -144737,7 +144737,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityUserCount", "ApiReferenceLink": null, @@ -144752,7 +144752,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityUserDetail", "ApiReferenceLink": null, @@ -144769,7 +144769,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserArchivedPrintJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getuserarchivedprintjobs?view=graph-rest-beta", @@ -144813,7 +144813,7 @@ "OutputType": "IMicrosoftGraphUserCredentialUsageDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserCredentialUsageDetailCount", "ApiReferenceLink": null, @@ -144913,7 +144913,7 @@ "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdownCount", "ApiReferenceLink": null, @@ -144927,7 +144927,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUserCount", "ApiReferenceLink": null, @@ -144970,7 +144970,7 @@ "OutputType": "IMicrosoftGraphAuthenticationsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyAuthenticationCount", "ApiReferenceLink": null, @@ -145042,7 +145042,7 @@ "OutputType": "IMicrosoftGraphDailyInactiveUsersByApplicationMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplicationCount", "ApiReferenceLink": null, @@ -145056,7 +145056,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUserCount", "ApiReferenceLink": null, @@ -145099,7 +145099,7 @@ "OutputType": "IMicrosoftGraphMfaCompletionMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyMfaCompletionCount", "ApiReferenceLink": null, @@ -145142,7 +145142,7 @@ "OutputType": "IMicrosoftGraphUserSignUpMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySignUpCount", "ApiReferenceLink": null, @@ -145185,7 +145185,7 @@ "OutputType": "IMicrosoftGraphInsightSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySummaryCount", "ApiReferenceLink": null, @@ -145301,7 +145301,7 @@ "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdownCount", "ApiReferenceLink": null, @@ -145315,7 +145315,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserCount", "ApiReferenceLink": null, @@ -145358,7 +145358,7 @@ "OutputType": "IMicrosoftGraphAuthenticationsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyAuthenticationCount", "ApiReferenceLink": null, @@ -145430,7 +145430,7 @@ "OutputType": "IMicrosoftGraphMonthlyInactiveUsersByApplicationMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplicationCount", "ApiReferenceLink": null, @@ -145444,7 +145444,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserCount", "ApiReferenceLink": null, @@ -145487,7 +145487,7 @@ "OutputType": "IMicrosoftGraphMfaCompletionMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletionCount", "ApiReferenceLink": null, @@ -145530,7 +145530,7 @@ "OutputType": "IMicrosoftGraphUserRequestsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyRequestCount", "ApiReferenceLink": null, @@ -145573,7 +145573,7 @@ "OutputType": "IMicrosoftGraphUserSignUpMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySignUpCount", "ApiReferenceLink": null, @@ -145616,7 +145616,7 @@ "OutputType": "IMicrosoftGraphInsightSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySummaryCount", "ApiReferenceLink": null, @@ -145630,7 +145630,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportYammerActivityCount", "ApiReferenceLink": null, @@ -145645,7 +145645,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportYammerActivityUserCount", "ApiReferenceLink": null, @@ -145660,7 +145660,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportYammerActivityUserDetail", "ApiReferenceLink": null, @@ -145677,7 +145677,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportYammerDeviceUsageDistributionUserCount", "ApiReferenceLink": null, @@ -145692,7 +145692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportYammerDeviceUsageUserCount", "ApiReferenceLink": null, @@ -145707,7 +145707,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportYammerDeviceUsageUserDetail", "ApiReferenceLink": null, @@ -145724,7 +145724,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportYammerGroupActivityCount", "ApiReferenceLink": null, @@ -145739,7 +145739,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportYammerGroupActivityDetail", "ApiReferenceLink": null, @@ -145756,7 +145756,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportYammerGroupActivityGroupCount", "ApiReferenceLink": null, @@ -145800,7 +145800,7 @@ "OutputType": "IMicrosoftGraphRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskDetectionCount", "ApiReferenceLink": null, @@ -145877,7 +145877,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyServicePrincipalCount", "ApiReferenceLink": null, @@ -145954,7 +145954,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyServicePrincipalHistoryCount", "ApiReferenceLink": null, @@ -146015,7 +146015,7 @@ "OutputType": "IMicrosoftGraphRiskyUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyUserCount", "ApiReferenceLink": null, @@ -146092,7 +146092,7 @@ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyUserHistoryCount", "ApiReferenceLink": null, @@ -146214,7 +146214,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceCount", "ApiReferenceLink": null, @@ -146272,7 +146272,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionCount", "ApiReferenceLink": null, @@ -146426,7 +146426,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScopeCount", "ApiReferenceLink": null, @@ -146441,7 +146441,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentCount", "ApiReferenceLink": null, @@ -146517,7 +146517,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScopeCount", "ApiReferenceLink": null, @@ -146561,7 +146561,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipalCount", "ApiReferenceLink": null, @@ -146830,7 +146830,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionCount", "ApiReferenceLink": null, @@ -147054,7 +147054,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceCount", "ApiReferenceLink": null, @@ -147112,7 +147112,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionCount", "ApiReferenceLink": null, @@ -147266,7 +147266,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScopeCount", "ApiReferenceLink": null, @@ -147281,7 +147281,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentCount", "ApiReferenceLink": null, @@ -147357,7 +147357,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScopeCount", "ApiReferenceLink": null, @@ -147401,7 +147401,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipalCount", "ApiReferenceLink": null, @@ -147670,7 +147670,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionCount", "ApiReferenceLink": null, @@ -147911,7 +147911,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceCount", "ApiReferenceLink": null, @@ -148044,7 +148044,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionCount", "ApiReferenceLink": null, @@ -148239,7 +148239,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalCount", "ApiReferenceLink": null, @@ -148282,7 +148282,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStepCount", "ApiReferenceLink": null, @@ -148312,7 +148312,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentCount", "ApiReferenceLink": null, @@ -148553,7 +148553,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleCount", "ApiReferenceLink": null, @@ -148764,7 +148764,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceCount", "ApiReferenceLink": null, @@ -149020,7 +149020,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestCount", "ApiReferenceLink": null, @@ -149261,7 +149261,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionCount", "ApiReferenceLink": null, @@ -149345,7 +149345,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount", "ApiReferenceLink": null, @@ -149486,7 +149486,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleCount", "ApiReferenceLink": null, @@ -149682,7 +149682,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceCount", "ApiReferenceLink": null, @@ -149923,7 +149923,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestCount", "ApiReferenceLink": null, @@ -150130,7 +150130,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentCount", "ApiReferenceLink": null, @@ -150251,7 +150251,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppCount", "ApiReferenceLink": null, @@ -150294,7 +150294,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceCount", "ApiReferenceLink": null, @@ -150353,7 +150353,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionCount", "ApiReferenceLink": null, @@ -150441,7 +150441,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalCount", "ApiReferenceLink": null, @@ -150485,7 +150485,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStepCount", "ApiReferenceLink": null, @@ -150515,7 +150515,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentCount", "ApiReferenceLink": null, @@ -150634,7 +150634,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleCount", "ApiReferenceLink": null, @@ -150723,7 +150723,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceCount", "ApiReferenceLink": null, @@ -150857,7 +150857,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestCount", "ApiReferenceLink": null, @@ -150976,7 +150976,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionCount", "ApiReferenceLink": null, @@ -151020,7 +151020,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFromCount", "ApiReferenceLink": null, @@ -151079,7 +151079,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleCount", "ApiReferenceLink": null, @@ -151153,7 +151153,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceCount", "ApiReferenceLink": null, @@ -151272,7 +151272,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestCount", "ApiReferenceLink": null, @@ -151406,7 +151406,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentCount", "ApiReferenceLink": null, @@ -151509,7 +151509,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceCount", "ApiReferenceLink": null, @@ -151567,7 +151567,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionCount", "ApiReferenceLink": null, @@ -151769,7 +151769,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalCount", "ApiReferenceLink": null, @@ -151812,7 +151812,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStepCount", "ApiReferenceLink": null, @@ -151842,7 +151842,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentCount", "ApiReferenceLink": null, @@ -152017,7 +152017,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleCount", "ApiReferenceLink": null, @@ -152105,7 +152105,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount", "ApiReferenceLink": null, @@ -152238,7 +152238,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount", "ApiReferenceLink": null, @@ -152566,7 +152566,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionCount", "ApiReferenceLink": null, @@ -152714,7 +152714,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount", "ApiReferenceLink": null, @@ -152773,7 +152773,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleCount", "ApiReferenceLink": null, @@ -152846,7 +152846,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount", "ApiReferenceLink": null, @@ -152964,7 +152964,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount", "ApiReferenceLink": null, @@ -153097,7 +153097,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentCount", "ApiReferenceLink": null, @@ -153249,7 +153249,7 @@ "OutputType": "IMicrosoftGraphCustomAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeCustomAppScopeCount", "ApiReferenceLink": null, @@ -153317,7 +153317,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceCount", "ApiReferenceLink": null, @@ -153375,7 +153375,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionCount", "ApiReferenceLink": null, @@ -153531,7 +153531,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentCount", "ApiReferenceLink": null, @@ -153774,7 +153774,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionCount", "ApiReferenceLink": null, @@ -153918,7 +153918,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentCount", "ApiReferenceLink": null, @@ -154040,7 +154040,7 @@ "OutputType": "IMicrosoftGraphSchemaExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSchemaExtensionCount", "ApiReferenceLink": null, @@ -154134,7 +154134,7 @@ "OutputType": "IMicrosoftGraphSearchAcronym" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchAcronymCount", "ApiReferenceLink": null, @@ -154228,7 +154228,7 @@ "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchBookmarkCount", "ApiReferenceLink": null, @@ -154336,7 +154336,7 @@ "OutputType": "IMicrosoftGraphSearchQna" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchQnaCount", "ApiReferenceLink": null, @@ -154430,7 +154430,7 @@ "OutputType": "IMicrosoftGraphSecurityAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityActionCount", "ApiReferenceLink": null, @@ -154524,7 +154524,7 @@ "OutputType": "IMicrosoftGraphAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAlertCount", "ApiReferenceLink": null, @@ -154618,7 +154618,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAlertV2Count", "ApiReferenceLink": null, @@ -154708,7 +154708,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomationCount", "ApiReferenceLink": null, @@ -154751,7 +154751,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomationRunCount", "ApiReferenceLink": null, @@ -154766,7 +154766,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationCount", "ApiReferenceLink": null, @@ -154809,7 +154809,7 @@ "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationCount", "ApiReferenceLink": null, @@ -154852,7 +154852,7 @@ "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetailCount", "ApiReferenceLink": null, @@ -154898,7 +154898,7 @@ "OutputType": "IMicrosoftGraphLandingPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPageCount", "ApiReferenceLink": null, @@ -154941,7 +154941,7 @@ "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetailCount", "ApiReferenceLink": null, @@ -154987,7 +154987,7 @@ "OutputType": "IMicrosoftGraphLoginPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLoginPageCount", "ApiReferenceLink": null, @@ -155030,7 +155030,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationOperationCount", "ApiReferenceLink": null, @@ -155075,7 +155075,7 @@ "OutputType": "IMicrosoftGraphPayload" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationPayloadCount", "ApiReferenceLink": null, @@ -155147,7 +155147,7 @@ "OutputType": "IMicrosoftGraphTrainingCampaign" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaignCount", "ApiReferenceLink": null, @@ -155161,7 +155161,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingCount", "ApiReferenceLink": null, @@ -155204,7 +155204,7 @@ "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetailCount", "ApiReferenceLink": null, @@ -155376,7 +155376,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditLogQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAuditLogQueryCount", "ApiReferenceLink": null, @@ -155533,7 +155533,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditLogRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAuditLogQueryRecordCount", "ApiReferenceLink": null, @@ -155682,7 +155682,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCount", "ApiReferenceLink": null, @@ -155776,7 +155776,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianCount", "ApiReferenceLink": null, @@ -155886,7 +155886,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceCount", "ApiReferenceLink": null, @@ -155979,7 +155979,7 @@ "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount", "ApiReferenceLink": null, @@ -156040,7 +156040,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -156101,7 +156101,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSourceCount", "ApiReferenceLink": null, @@ -156196,7 +156196,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldCount", "ApiReferenceLink": null, @@ -156257,7 +156257,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceCount", "ApiReferenceLink": null, @@ -156333,7 +156333,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSourceCount", "ApiReferenceLink": null, @@ -156411,7 +156411,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount", "ApiReferenceLink": null, @@ -156487,7 +156487,7 @@ "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperationCount", "ApiReferenceLink": null, @@ -156582,7 +156582,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetCount", "ApiReferenceLink": null, @@ -156677,7 +156677,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent", "ApiReferenceLink": null, @@ -156692,7 +156692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCount", "ApiReferenceLink": null, @@ -156756,7 +156756,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent", "ApiReferenceLink": null, @@ -156817,7 +156817,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTagCount", "ApiReferenceLink": null, @@ -156895,7 +156895,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryCount", "ApiReferenceLink": null, @@ -157019,7 +157019,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount", "ApiReferenceLink": null, @@ -157049,7 +157049,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryAddToReviewSetOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCount", "ApiReferenceLink": null, @@ -157110,7 +157110,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSourceCount", "ApiReferenceLink": null, @@ -157186,7 +157186,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount", "ApiReferenceLink": null, @@ -157325,7 +157325,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTagCount", "ApiReferenceLink": null, @@ -157340,7 +157340,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagCount", "ApiReferenceLink": null, @@ -157416,7 +157416,7 @@ "OutputType": "IMicrosoftGraphCloudAppSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCloudAppSecurityProfileCount", "ApiReferenceLink": null, @@ -157507,7 +157507,7 @@ "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmailCount", "ApiReferenceLink": null, @@ -157567,7 +157567,7 @@ "OutputType": "IMicrosoftGraphDomainSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityDomainSecurityProfileCount", "ApiReferenceLink": null, @@ -157610,7 +157610,7 @@ "OutputType": "IMicrosoftGraphFileSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityFileSecurityProfileCount", "ApiReferenceLink": null, @@ -157653,7 +157653,7 @@ "OutputType": "IMicrosoftGraphHostSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityHostSecurityProfileCount", "ApiReferenceLink": null, @@ -157710,7 +157710,7 @@ "OutputType": "IMicrosoftGraphSecurityHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIdentityHealthIssueCount", "ApiReferenceLink": null, @@ -157816,7 +157816,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIncidentAlertCommentCount", "ApiReferenceLink": null, @@ -157831,7 +157831,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIncidentAlertCount", "ApiReferenceLink": null, @@ -157846,7 +157846,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIncidentCount", "ApiReferenceLink": null, @@ -157985,7 +157985,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabelCount", "ApiReferenceLink": null, @@ -158060,7 +158060,7 @@ "OutputType": "IMicrosoftGraphIPSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIPSecurityProfileCount", "ApiReferenceLink": null, @@ -158117,7 +158117,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelAuthorityCount", "ApiReferenceLink": null, @@ -158160,7 +158160,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategoryCount", "ApiReferenceLink": null, @@ -158203,7 +158203,7 @@ "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategorySubcategoryCount", "ApiReferenceLink": null, @@ -158247,7 +158247,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelCitationCount", "ApiReferenceLink": null, @@ -158290,7 +158290,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelDepartmentCount", "ApiReferenceLink": null, @@ -158333,7 +158333,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelFilePlanReferenceCount", "ApiReferenceLink": null, @@ -158425,7 +158425,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelCount", "ApiReferenceLink": null, @@ -158575,7 +158575,7 @@ "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStageCount", "ApiReferenceLink": null, @@ -158619,7 +158619,7 @@ "OutputType": "IMicrosoftGraphProviderTenantSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityProviderTenantSettingCount", "ApiReferenceLink": null, @@ -158710,7 +158710,7 @@ "OutputType": "IMicrosoftGraphSecurityDetectionRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityRuleDetectionRuleCount", "ApiReferenceLink": null, @@ -158867,7 +158867,7 @@ "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySecureScoreControlProfileCount", "ApiReferenceLink": null, @@ -158898,7 +158898,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySecureScoreCount", "ApiReferenceLink": null, @@ -159021,7 +159021,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverCount", "ApiReferenceLink": null, @@ -159065,7 +159065,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -159109,7 +159109,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorCount", "ApiReferenceLink": null, @@ -159153,7 +159153,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -159168,7 +159168,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCount", "ApiReferenceLink": null, @@ -159199,7 +159199,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestFinalAttachment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-beta", @@ -159231,7 +159231,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestFinalReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-beta", @@ -159292,7 +159292,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestNoteCount", "ApiReferenceLink": null, @@ -159382,7 +159382,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleCount", "ApiReferenceLink": null, @@ -159443,7 +159443,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicatorCount", "ApiReferenceLink": null, @@ -159517,7 +159517,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPairCount", "ApiReferenceLink": null, @@ -159564,7 +159564,7 @@ "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponentCount", "ApiReferenceLink": null, @@ -159627,7 +159627,7 @@ "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookieCount", "ApiReferenceLink": null, @@ -159658,7 +159658,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCount", "ApiReferenceLink": null, @@ -159719,7 +159719,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairCount", "ApiReferenceLink": null, @@ -159779,7 +159779,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPairCount", "ApiReferenceLink": null, @@ -159823,7 +159823,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsCount", "ApiReferenceLink": null, @@ -159867,7 +159867,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverseCount", "ApiReferenceLink": null, @@ -159914,7 +159914,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortCount", "ApiReferenceLink": null, @@ -160009,7 +160009,7 @@ "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificateCount", "ApiReferenceLink": null, @@ -160069,7 +160069,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomainCount", "ApiReferenceLink": null, @@ -160116,7 +160116,7 @@ "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostTrackerCount", "ApiReferenceLink": null, @@ -160191,7 +160191,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileCount", "ApiReferenceLink": null, @@ -160234,7 +160234,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicatorCount", "ApiReferenceLink": null, @@ -160293,7 +160293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordCount", "ApiReferenceLink": null, @@ -160366,7 +160366,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicatorCount", "ApiReferenceLink": null, @@ -160409,7 +160409,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateCount", "ApiReferenceLink": null, @@ -160452,7 +160452,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHostCount", "ApiReferenceLink": null, @@ -160496,7 +160496,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomainCount", "ApiReferenceLink": null, @@ -160583,7 +160583,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticleCount", "ApiReferenceLink": null, @@ -160627,7 +160627,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponentCount", "ApiReferenceLink": null, @@ -160642,7 +160642,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityCount", "ApiReferenceLink": null, @@ -160685,7 +160685,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecordCount", "ApiReferenceLink": null, @@ -160743,7 +160743,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordCount", "ApiReferenceLink": null, @@ -160786,7 +160786,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistoryCount", "ApiReferenceLink": null, @@ -160925,7 +160925,7 @@ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatCount", "ApiReferenceLink": null, @@ -161083,7 +161083,7 @@ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicyCount", "ApiReferenceLink": null, @@ -161233,7 +161233,7 @@ "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionFileThreatCount", "ApiReferenceLink": null, @@ -161375,7 +161375,7 @@ "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreatCount", "ApiReferenceLink": null, @@ -161451,7 +161451,7 @@ "OutputType": "IMicrosoftGraphTiIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTiIndicatorCount", "ApiReferenceLink": null, @@ -161542,7 +161542,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTriggerRetentionEventCount", "ApiReferenceLink": null, @@ -161682,7 +161682,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventTypeCount", "ApiReferenceLink": null, @@ -161742,7 +161742,7 @@ "OutputType": "IMicrosoftGraphUserSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityUserSecurityProfileCount", "ApiReferenceLink": null, @@ -161785,7 +161785,7 @@ "OutputType": "IMicrosoftGraphServiceHealth" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverviewCount", "ApiReferenceLink": null, @@ -161828,7 +161828,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssueCount", "ApiReferenceLink": null, @@ -161872,7 +161872,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementIssueCount", "ApiReferenceLink": null, @@ -161944,7 +161944,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentArchive", "ApiReferenceLink": null, @@ -161959,7 +161959,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentContent", "ApiReferenceLink": null, @@ -161974,7 +161974,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentCount", "ApiReferenceLink": null, @@ -161989,7 +161989,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageCount", "ApiReferenceLink": null, @@ -162143,7 +162143,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppManagementPolicyCount", "ApiReferenceLink": null, @@ -162228,7 +162228,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppRoleAssignedToCount", "ApiReferenceLink": null, @@ -162354,7 +162354,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppRoleAssignmentCount", "ApiReferenceLink": null, @@ -162466,7 +162466,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaServicePrincipalById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -162536,7 +162536,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyByRef", "ApiReferenceLink": null, @@ -162591,7 +162591,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyCount", "ApiReferenceLink": null, @@ -162647,7 +162647,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalCount", "ApiReferenceLink": null, @@ -162801,7 +162801,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObjectCount", "ApiReferenceLink": null, @@ -162857,7 +162857,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObjectCountAsServicePrincipal", "ApiReferenceLink": null, @@ -162926,7 +162926,7 @@ "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassificationCount", "ApiReferenceLink": null, @@ -163050,7 +163050,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalEndpointCount", "ApiReferenceLink": null, @@ -163120,7 +163120,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef", "ApiReferenceLink": null, @@ -163175,7 +163175,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyCount", "ApiReferenceLink": null, @@ -163260,7 +163260,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalLicenseDetailCount", "ApiReferenceLink": null, @@ -163275,7 +163275,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalLicenseDetailTeamLicensingDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-beta", @@ -163290,7 +163290,7 @@ "OutputType": "IMicrosoftGraphTeamsLicensingDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaServicePrincipalMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -163388,7 +163388,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaServicePrincipalMemberObject", "ApiReferenceLink": null, @@ -163659,7 +163659,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfCount", "ApiReferenceLink": null, @@ -163715,7 +163715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -163730,7 +163730,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfCountAsDirectoryRole", "ApiReferenceLink": null, @@ -163745,7 +163745,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -163814,7 +163814,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrantCount", "ApiReferenceLink": null, @@ -164040,7 +164040,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectCount", "ApiReferenceLink": null, @@ -164096,7 +164096,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsApplication", "ApiReferenceLink": null, @@ -164111,7 +164111,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsEndpoint", "ApiReferenceLink": null, @@ -164126,7 +164126,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsGroup", "ApiReferenceLink": null, @@ -164141,7 +164141,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsServicePrincipal", "ApiReferenceLink": null, @@ -164298,7 +164298,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerByRef", "ApiReferenceLink": null, @@ -164353,7 +164353,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerCount", "ApiReferenceLink": null, @@ -164409,7 +164409,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerCountAsEndpoint", "ApiReferenceLink": null, @@ -164424,7 +164424,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerCountAsServicePrincipal", "ApiReferenceLink": null, @@ -164439,7 +164439,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerCountAsUser", "ApiReferenceLink": null, @@ -164454,7 +164454,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaServicePrincipalPasswordSingleSignOnCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-getpasswordsinglesignoncredentials?view=graph-rest-beta", @@ -164548,7 +164548,7 @@ "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount", "ApiReferenceLink": null, @@ -164592,7 +164592,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalRiskDetectionCount", "ApiReferenceLink": null, @@ -164621,7 +164621,7 @@ "OutputType": "IMicrosoftGraphSynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaServicePrincipalSynchronizationAccessToken", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-beta", @@ -164749,7 +164749,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobBulkUploadContent", "ApiReferenceLink": null, @@ -164764,7 +164764,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobCount", "ApiReferenceLink": null, @@ -164889,7 +164889,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectoryCount", "ApiReferenceLink": null, @@ -164904,7 +164904,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationSecretCount", "ApiReferenceLink": null, @@ -164998,7 +164998,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateCount", "ApiReferenceLink": null, @@ -165107,7 +165107,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectoryCount", "ApiReferenceLink": null, @@ -165151,7 +165151,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicyCount", "ApiReferenceLink": null, @@ -165236,7 +165236,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicyCount", "ApiReferenceLink": null, @@ -165441,7 +165441,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -165489,7 +165489,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -165504,7 +165504,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsDirectoryRole", "ApiReferenceLink": null, @@ -165519,7 +165519,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -165534,7 +165534,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaServicePrincipalUserOwnedObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -165549,7 +165549,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSettingCount", "ApiReferenceLink": null, @@ -165640,7 +165640,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -165655,7 +165655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareCount", "ApiReferenceLink": null, @@ -165713,7 +165713,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -165768,7 +165768,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareDriveItemContent", "ApiReferenceLink": null, @@ -165832,7 +165832,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareDriveItemContentStream", "ApiReferenceLink": null, @@ -165925,7 +165925,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareItemContent", "ApiReferenceLink": null, @@ -165940,7 +165940,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareItemContentStream", "ApiReferenceLink": null, @@ -165955,7 +165955,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareItemCount", "ApiReferenceLink": null, @@ -166019,7 +166019,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -166085,7 +166085,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -166160,7 +166160,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListColumnCount", "ApiReferenceLink": null, @@ -166248,7 +166248,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnCount", "ApiReferenceLink": null, @@ -166292,7 +166292,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -166336,7 +166336,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -166381,7 +166381,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeCount", "ApiReferenceLink": null, @@ -166440,7 +166440,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -166599,7 +166599,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -166665,7 +166665,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -166716,7 +166716,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemDriveItemContent", "ApiReferenceLink": null, @@ -166733,7 +166733,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -166799,7 +166799,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemVersionCount", "ApiReferenceLink": null, @@ -166862,7 +166862,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListOperationCount", "ApiReferenceLink": null, @@ -166906,7 +166906,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListSubscriptionCount", "ApiReferenceLink": null, @@ -166951,7 +166951,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareRootContent", "ApiReferenceLink": null, @@ -166966,7 +166966,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareRootContentStream", "ApiReferenceLink": null, @@ -167250,7 +167250,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityCount", "ApiReferenceLink": null, @@ -167280,7 +167280,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContent", "ApiReferenceLink": null, @@ -167295,7 +167295,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContentStream", "ApiReferenceLink": null, @@ -167310,7 +167310,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -167501,7 +167501,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteByPath", "ApiReferenceLink": null, @@ -167611,7 +167611,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteColumnCount", "ApiReferenceLink": null, @@ -167818,7 +167818,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -167930,7 +167930,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnCount", "ApiReferenceLink": null, @@ -168007,7 +168007,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -168051,7 +168051,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -168113,7 +168113,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeCount", "ApiReferenceLink": null, @@ -168161,7 +168161,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteCount", "ApiReferenceLink": null, @@ -168365,7 +168365,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteDriveCount", "ApiReferenceLink": null, @@ -168458,7 +168458,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteExternalColumnCount", "ApiReferenceLink": null, @@ -168719,7 +168719,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetGraphBPrePathByPath", "ApiReferenceLink": null, @@ -168778,7 +168778,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -168837,7 +168837,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -169073,7 +169073,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListColumnCount", "ApiReferenceLink": null, @@ -169326,7 +169326,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnCount", "ApiReferenceLink": null, @@ -169403,7 +169403,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -169447,7 +169447,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -169509,7 +169509,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeCount", "ApiReferenceLink": null, @@ -169557,7 +169557,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListCount", "ApiReferenceLink": null, @@ -169633,7 +169633,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -169827,7 +169827,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityCount", "ApiReferenceLink": null, @@ -169906,7 +169906,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityDriveItemContent", "ApiReferenceLink": null, @@ -169921,7 +169921,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityDriveItemContentStream", "ApiReferenceLink": null, @@ -170059,7 +170059,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -170219,7 +170219,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -170354,7 +170354,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemDriveItemContent", "ApiReferenceLink": null, @@ -170369,7 +170369,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -170462,7 +170462,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemVersionCount", "ApiReferenceLink": null, @@ -170604,7 +170604,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListOperationCount", "ApiReferenceLink": null, @@ -170681,7 +170681,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListSubscriptionCount", "ApiReferenceLink": null, @@ -170807,7 +170807,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteNotebookCount", "ApiReferenceLink": null, @@ -170863,7 +170863,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaSiteOnenoteNotebookFromWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-beta", @@ -171087,7 +171087,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteOperationCount", "ApiReferenceLink": null, @@ -171197,7 +171197,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenotePageContent", "ApiReferenceLink": null, @@ -171212,7 +171212,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenotePageCount", "ApiReferenceLink": null, @@ -171275,7 +171275,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteResourceContent", "ApiReferenceLink": null, @@ -171323,7 +171323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteResourceCount", "ApiReferenceLink": null, @@ -171449,7 +171449,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteSectionCount", "ApiReferenceLink": null, @@ -171617,7 +171617,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteSectionGroupCount", "ApiReferenceLink": null, @@ -171872,7 +171872,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOperationCount", "ApiReferenceLink": null, @@ -172102,7 +172102,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount", "ApiReferenceLink": null, @@ -172146,7 +172146,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount", "ApiReferenceLink": null, @@ -172161,7 +172161,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionCount", "ApiReferenceLink": null, @@ -172220,7 +172220,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount", "ApiReferenceLink": null, @@ -172279,7 +172279,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -172338,7 +172338,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -172382,7 +172382,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageWebPartCount", "ApiReferenceLink": null, @@ -172397,7 +172397,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageCount", "ApiReferenceLink": null, @@ -172429,7 +172429,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageCountAsSitePage", "ApiReferenceLink": null, @@ -172505,7 +172505,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -172564,7 +172564,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -172579,7 +172579,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", "ApiReferenceLink": null, @@ -172594,7 +172594,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", "ApiReferenceLink": null, @@ -172609,7 +172609,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", "ApiReferenceLink": null, @@ -172653,7 +172653,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePermissionCount", "ApiReferenceLink": null, @@ -172668,7 +172668,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteRecentNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-beta", @@ -172819,7 +172819,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupCount", "ApiReferenceLink": null, @@ -172929,7 +172929,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildCount", "ApiReferenceLink": null, @@ -172978,7 +172978,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationCount", "ApiReferenceLink": null, @@ -173063,7 +173063,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetCount", "ApiReferenceLink": null, @@ -173139,7 +173139,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelationCount", "ApiReferenceLink": null, @@ -173274,7 +173274,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildCount", "ApiReferenceLink": null, @@ -173318,7 +173318,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationCount", "ApiReferenceLink": null, @@ -173393,7 +173393,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermCount", "ApiReferenceLink": null, @@ -173437,7 +173437,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationCount", "ApiReferenceLink": null, @@ -173607,7 +173607,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildCount", "ApiReferenceLink": null, @@ -173656,7 +173656,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelationCount", "ApiReferenceLink": null, @@ -173741,7 +173741,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetCount", "ApiReferenceLink": null, @@ -173832,7 +173832,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildCount", "ApiReferenceLink": null, @@ -173881,7 +173881,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationCount", "ApiReferenceLink": null, @@ -173966,7 +173966,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetCount", "ApiReferenceLink": null, @@ -174010,7 +174010,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationCount", "ApiReferenceLink": null, @@ -174128,7 +174128,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildCount", "ApiReferenceLink": null, @@ -174172,7 +174172,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationCount", "ApiReferenceLink": null, @@ -174247,7 +174247,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermCount", "ApiReferenceLink": null, @@ -174291,7 +174291,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationCount", "ApiReferenceLink": null, @@ -174412,7 +174412,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelationCount", "ApiReferenceLink": null, @@ -174581,7 +174581,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildCount", "ApiReferenceLink": null, @@ -174642,7 +174642,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationCount", "ApiReferenceLink": null, @@ -174717,7 +174717,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermCount", "ApiReferenceLink": null, @@ -174778,7 +174778,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelationCount", "ApiReferenceLink": null, @@ -175040,7 +175040,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSubSiteCount", "ApiReferenceLink": null, @@ -175374,7 +175374,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelCount", "ApiReferenceLink": null, @@ -175550,7 +175550,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -175565,7 +175565,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -175667,7 +175667,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMemberCount", "ApiReferenceLink": null, @@ -175804,7 +175804,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageCount", "ApiReferenceLink": null, @@ -175997,7 +175997,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -176140,7 +176140,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageReplyCount", "ApiReferenceLink": null, @@ -176333,7 +176333,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -176507,7 +176507,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -176539,7 +176539,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -176794,7 +176794,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelTabCount", "ApiReferenceLink": null, @@ -176921,7 +176921,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamCount", "ApiReferenceLink": null, @@ -176974,7 +176974,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -177043,7 +177043,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamIncomingChannelCount", "ApiReferenceLink": null, @@ -177394,7 +177394,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamInstalledAppCount", "ApiReferenceLink": null, @@ -177655,7 +177655,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamMemberCount", "ApiReferenceLink": null, @@ -177811,7 +177811,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOperationCount", "ApiReferenceLink": null, @@ -177855,7 +177855,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOwnerCount", "ApiReferenceLink": null, @@ -177899,7 +177899,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOwnerServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -178024,7 +178024,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPermissionGrantCount", "ApiReferenceLink": null, @@ -178135,7 +178135,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPhotoContent", "ApiReferenceLink": null, @@ -178221,7 +178221,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelFileFolderContent", "ApiReferenceLink": null, @@ -178236,7 +178236,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -178280,7 +178280,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMemberCount", "ApiReferenceLink": null, @@ -178324,7 +178324,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageCount", "ApiReferenceLink": null, @@ -178385,7 +178385,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -178429,7 +178429,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyCount", "ApiReferenceLink": null, @@ -178490,7 +178490,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -178565,7 +178565,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -178580,7 +178580,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -178624,7 +178624,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelTabCount", "ApiReferenceLink": null, @@ -178765,7 +178765,7 @@ "OutputType": "IMicrosoftGraphDayNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleDayNoteCount", "ApiReferenceLink": null, @@ -178876,7 +178876,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleOfferShiftRequestCount", "ApiReferenceLink": null, @@ -179098,7 +179098,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequestCount", "ApiReferenceLink": null, @@ -179146,7 +179146,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShiftCount", "ApiReferenceLink": null, @@ -179289,7 +179289,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleSchedulingGroupCount", "ApiReferenceLink": null, @@ -179432,7 +179432,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleShiftCount", "ApiReferenceLink": null, @@ -179559,7 +179559,7 @@ "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleShiftRoleDefinitionCount", "ApiReferenceLink": null, @@ -179661,7 +179661,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequestCount", "ApiReferenceLink": null, @@ -179772,7 +179772,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleTimeCardCount", "ApiReferenceLink": null, @@ -179899,7 +179899,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleTimeOffCount", "ApiReferenceLink": null, @@ -180042,7 +180042,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleTimeOffReasonCount", "ApiReferenceLink": null, @@ -180185,7 +180185,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleTimeOffRequestCount", "ApiReferenceLink": null, @@ -180415,7 +180415,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamTagCount", "ApiReferenceLink": null, @@ -180558,7 +180558,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamTagMemberCount", "ApiReferenceLink": null, @@ -180766,7 +180766,7 @@ "OutputType": "IMicrosoftGraphDeletedChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedChatCount", "ApiReferenceLink": null, @@ -180838,7 +180838,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelCount", "ApiReferenceLink": null, @@ -180868,7 +180868,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -180883,7 +180883,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -180927,7 +180927,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMemberCount", "ApiReferenceLink": null, @@ -180973,7 +180973,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageCount", "ApiReferenceLink": null, @@ -181034,7 +181034,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -181078,7 +181078,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyCount", "ApiReferenceLink": null, @@ -181139,7 +181139,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -181229,7 +181229,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -181244,7 +181244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -181288,7 +181288,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelTabCount", "ApiReferenceLink": null, @@ -181318,7 +181318,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamCount", "ApiReferenceLink": null, @@ -181459,7 +181459,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeviceCount", "ApiReferenceLink": null, @@ -181585,7 +181585,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeviceOperationCount", "ApiReferenceLink": null, @@ -181694,7 +181694,7 @@ "OutputType": "IMicrosoftGraphTeamTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkTeamTemplateCount", "ApiReferenceLink": null, @@ -181771,7 +181771,7 @@ "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkTeamTemplateDefinitionCount", "ApiReferenceLink": null, @@ -181849,7 +181849,7 @@ "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkWorkforceIntegrationCount", "ApiReferenceLink": null, @@ -181943,7 +181943,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerCount", "ApiReferenceLink": null, @@ -182020,7 +182020,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount", "ApiReferenceLink": null, @@ -182178,7 +182178,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount", "ApiReferenceLink": null, @@ -182210,7 +182210,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipCount", "ApiReferenceLink": null, @@ -182304,7 +182304,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperationCount", "ApiReferenceLink": null, @@ -182399,7 +182399,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequestCount", "ApiReferenceLink": null, @@ -182540,7 +182540,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyComplianceCount", "ApiReferenceLink": null, @@ -182629,7 +182629,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotificationCount", "ApiReferenceLink": null, @@ -182644,7 +182644,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertCount", "ApiReferenceLink": null, @@ -182687,7 +182687,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotificationCount", "ApiReferenceLink": null, @@ -182749,7 +182749,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLogCount", "ApiReferenceLink": null, @@ -182825,7 +182825,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlertCount", "ApiReferenceLink": null, @@ -182840,7 +182840,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleCount", "ApiReferenceLink": null, @@ -182914,7 +182914,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRuleCount", "ApiReferenceLink": null, @@ -182929,7 +182929,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionCount", "ApiReferenceLink": null, @@ -182987,7 +182987,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotificationCount", "ApiReferenceLink": null, @@ -183030,7 +183030,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformanceCount", "ApiReferenceLink": null, @@ -183090,7 +183090,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEventCount", "ApiReferenceLink": null, @@ -183167,7 +183167,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnectionCount", "ApiReferenceLink": null, @@ -183261,7 +183261,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDeviceCount", "ApiReferenceLink": null, @@ -183355,7 +183355,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverviewCount", "ApiReferenceLink": null, @@ -183465,7 +183465,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverageCount", "ApiReferenceLink": null, @@ -183504,7 +183504,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCount", "ApiReferenceLink": null, @@ -183564,7 +183564,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummaryCount", "ApiReferenceLink": null, @@ -183641,7 +183641,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformationCount", "ApiReferenceLink": null, @@ -183735,7 +183735,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformationCount", "ApiReferenceLink": null, @@ -183795,7 +183795,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformanceCount", "ApiReferenceLink": null, @@ -183872,7 +183872,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummaryCount", "ApiReferenceLink": null, @@ -183932,7 +183932,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceHealthStatusCount", "ApiReferenceLink": null, @@ -183990,7 +183990,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantEmailNotificationCount", "ApiReferenceLink": null, @@ -184067,7 +184067,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantGroupCount", "ApiReferenceLink": null, @@ -184161,7 +184161,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceCount", "ApiReferenceLink": null, @@ -184255,7 +184255,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrendCount", "ApiReferenceLink": null, @@ -184349,7 +184349,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementActionCount", "ApiReferenceLink": null, @@ -184443,7 +184443,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatusCount", "ApiReferenceLink": null, @@ -184537,7 +184537,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementIntentCount", "ApiReferenceLink": null, @@ -184663,7 +184663,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionCount", "ApiReferenceLink": null, @@ -184708,7 +184708,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionManagementTemplateCount", "ApiReferenceLink": null, @@ -184752,7 +184752,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummaryCount", "ApiReferenceLink": null, @@ -184766,7 +184766,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCount", "ApiReferenceLink": null, @@ -184844,7 +184844,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepCount", "ApiReferenceLink": null, @@ -184904,7 +184904,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummaryCount", "ApiReferenceLink": null, @@ -184965,7 +184965,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionCount", "ApiReferenceLink": null, @@ -185010,7 +185010,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeploymentCount", "ApiReferenceLink": null, @@ -185101,7 +185101,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsMyRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantMyRoleCount", "ApiReferenceLink": null, @@ -185195,7 +185195,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantTagCount", "ApiReferenceLink": null, @@ -185255,7 +185255,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantTicketingEndpointCount", "ApiReferenceLink": null, @@ -185332,7 +185332,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareStateCount", "ApiReferenceLink": null, @@ -185426,7 +185426,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsProtectionStateCount", "ApiReferenceLink": null, @@ -185581,7 +185581,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationTenantCount", "ApiReferenceLink": null, @@ -185697,7 +185697,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkKeySet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTrustFrameworkKeySetActiveKey", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-getactivekey?view=graph-rest-beta", @@ -185729,7 +185729,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTrustFrameworkKeySetCount", "ApiReferenceLink": null, @@ -185823,7 +185823,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTrustFrameworkPolicyContent", "ApiReferenceLink": null, @@ -185855,7 +185855,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTrustFrameworkPolicyCount", "ApiReferenceLink": null, @@ -186170,7 +186170,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserActivityCount", "ApiReferenceLink": null, @@ -186229,7 +186229,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserActivityHistoryItemCount", "ApiReferenceLink": null, @@ -186319,7 +186319,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAgreementAcceptanceCount", "ApiReferenceLink": null, @@ -186351,7 +186351,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAnalyticActivityStatisticsCount", "ApiReferenceLink": null, @@ -186444,7 +186444,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAppRoleAssignedResourceCount", "ApiReferenceLink": null, @@ -186522,7 +186522,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAppRoleAssignmentCount", "ApiReferenceLink": null, @@ -186649,7 +186649,7 @@ "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationEmailMethodCount", "ApiReferenceLink": null, @@ -186792,7 +186792,7 @@ "OutputType": "IMicrosoftGraphFido2AuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationFido2MethodCount", "ApiReferenceLink": null, @@ -186935,7 +186935,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMethodCount", "ApiReferenceLink": null, @@ -187078,7 +187078,7 @@ "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMicrosoftAuthenticatorMethodCount", "ApiReferenceLink": null, @@ -187203,7 +187203,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationOperationCount", "ApiReferenceLink": null, @@ -187313,7 +187313,7 @@ "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodCount", "ApiReferenceLink": null, @@ -187471,7 +187471,7 @@ "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPasswordMethodCount", "ApiReferenceLink": null, @@ -187614,7 +187614,7 @@ "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPhoneMethodCount", "ApiReferenceLink": null, @@ -187691,7 +187691,7 @@ "OutputType": "IMicrosoftGraphPlatformCredentialAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPlatformCredentialMethodCount", "ApiReferenceLink": null, @@ -187831,7 +187831,7 @@ "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationSoftwareOathMethodCount", "ApiReferenceLink": null, @@ -187974,7 +187974,7 @@ "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationTemporaryAccessPassMethodCount", "ApiReferenceLink": null, @@ -188117,7 +188117,7 @@ "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethodCount", "ApiReferenceLink": null, @@ -188180,7 +188180,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaUserById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", @@ -188257,7 +188257,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCalendarCount", "ApiReferenceLink": null, @@ -188504,7 +188504,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCalendarGroupCount", "ApiReferenceLink": null, @@ -188576,7 +188576,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCalendarPermissionCount", "ApiReferenceLink": null, @@ -188593,7 +188593,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaUserCalendarSchedule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-beta", @@ -188801,7 +188801,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatCount", "ApiReferenceLink": null, @@ -188886,7 +188886,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatInstalledAppCount", "ApiReferenceLink": null, @@ -189169,7 +189169,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMemberCount", "ApiReferenceLink": null, @@ -189408,7 +189408,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageCount", "ApiReferenceLink": null, @@ -189681,7 +189681,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageHostedContentCount", "ApiReferenceLink": null, @@ -189782,7 +189782,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyCount", "ApiReferenceLink": null, @@ -189843,7 +189843,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -189887,7 +189887,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatOperationCount", "ApiReferenceLink": null, @@ -189931,7 +189931,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatPermissionGrantCount", "ApiReferenceLink": null, @@ -189977,7 +189977,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatPinnedMessageCount", "ApiReferenceLink": null, @@ -190053,7 +190053,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatTabCount", "ApiReferenceLink": null, @@ -190083,7 +190083,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCloudPcConnectivityHistory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpcconnectivityhistory?view=graph-rest-beta", @@ -190098,7 +190098,7 @@ "OutputType": "IMicrosoftGraphCloudPcConnectivityEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCloudPcFrontlineCloudPcAccessState", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta", @@ -190113,7 +190113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCloudPcLaunchInfo", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta", @@ -190177,7 +190177,7 @@ "OutputType": "IMicrosoftGraphCloudPc" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCloudPcShiftWorkCloudPcAccessState", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getshiftworkcloudpcaccessstate?view=graph-rest-beta", @@ -190209,7 +190209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCloudPcSupportedCloudPcRemoteAction", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getsupportedcloudpcremoteactions?view=graph-rest-beta", @@ -190287,7 +190287,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactCount", "ApiReferenceLink": null, @@ -190380,7 +190380,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactExtensionCount", "ApiReferenceLink": null, @@ -190567,7 +190567,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactCount", "ApiReferenceLink": null, @@ -190660,7 +190660,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactExtensionCount", "ApiReferenceLink": null, @@ -190690,7 +190690,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactPhotoContent", "ApiReferenceLink": null, @@ -190705,7 +190705,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderCount", "ApiReferenceLink": null, @@ -190815,7 +190815,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactCount", "ApiReferenceLink": null, @@ -190908,7 +190908,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactExtensionCount", "ApiReferenceLink": null, @@ -190938,7 +190938,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactPhotoContent", "ApiReferenceLink": null, @@ -190953,7 +190953,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderCount", "ApiReferenceLink": null, @@ -191032,7 +191032,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactPhotoContent", "ApiReferenceLink": null, @@ -191047,7 +191047,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCount", "ApiReferenceLink": null, @@ -191273,7 +191273,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCreatedObjectCount", "ApiReferenceLink": null, @@ -191337,7 +191337,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCreatedObjectCountAsServicePrincipal", "ApiReferenceLink": null, @@ -191406,7 +191406,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaUserDefaultCalendarSchedule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-beta", @@ -191632,7 +191632,7 @@ "OutputType": "IMicrosoftGraphCommand" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceCommandCount", "ApiReferenceLink": null, @@ -191662,7 +191662,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceCount", "ApiReferenceLink": null, @@ -191750,7 +191750,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfigurationAssignmentCount", "ApiReferenceLink": null, @@ -191765,7 +191765,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfigurationCount", "ApiReferenceLink": null, @@ -191809,7 +191809,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceExtensionCount", "ApiReferenceLink": null, @@ -191853,7 +191853,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceManagementTroubleshootingEventCount", "ApiReferenceLink": null, @@ -191955,7 +191955,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfCount", "ApiReferenceLink": null, @@ -191970,7 +191970,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -191985,7 +191985,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -192101,7 +192101,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerByRef", "ApiReferenceLink": null, @@ -192115,7 +192115,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerCount", "ApiReferenceLink": null, @@ -192130,7 +192130,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerCountAsEndpoint", "ApiReferenceLink": null, @@ -192145,7 +192145,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerCountAsServicePrincipal", "ApiReferenceLink": null, @@ -192160,7 +192160,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerCountAsUser", "ApiReferenceLink": null, @@ -192276,7 +192276,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserByRef", "ApiReferenceLink": null, @@ -192290,7 +192290,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserCount", "ApiReferenceLink": null, @@ -192305,7 +192305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserCountAsEndpoint", "ApiReferenceLink": null, @@ -192320,7 +192320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserCountAsServicePrincipal", "ApiReferenceLink": null, @@ -192335,7 +192335,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserCountAsUser", "ApiReferenceLink": null, @@ -192437,7 +192437,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -192452,7 +192452,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -192467,7 +192467,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -192511,7 +192511,7 @@ "OutputType": "IMicrosoftGraphUsageRight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceUsageRightsCount", "ApiReferenceLink": null, @@ -192654,7 +192654,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDirectReportCount", "ApiReferenceLink": null, @@ -192710,7 +192710,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDirectReportCountAsOrgContact", "ApiReferenceLink": null, @@ -192725,7 +192725,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDirectReportCountAsUser", "ApiReferenceLink": null, @@ -192861,7 +192861,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveBundleContent", "ApiReferenceLink": null, @@ -192876,7 +192876,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveBundleContentStream", "ApiReferenceLink": null, @@ -192891,7 +192891,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveBundleCount", "ApiReferenceLink": null, @@ -192950,7 +192950,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -192965,7 +192965,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveCount", "ApiReferenceLink": null, @@ -193073,7 +193073,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -193117,7 +193117,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveFollowingContent", "ApiReferenceLink": null, @@ -193132,7 +193132,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveFollowingContentStream", "ApiReferenceLink": null, @@ -193147,7 +193147,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveFollowingCount", "ApiReferenceLink": null, @@ -193278,7 +193278,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -193352,7 +193352,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemChildContent", "ApiReferenceLink": null, @@ -193367,7 +193367,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemChildContentStream", "ApiReferenceLink": null, @@ -193382,7 +193382,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemChildCount", "ApiReferenceLink": null, @@ -193397,7 +193397,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemContent", "ApiReferenceLink": null, @@ -193412,7 +193412,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemContentStream", "ApiReferenceLink": null, @@ -193427,7 +193427,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemCount", "ApiReferenceLink": null, @@ -193486,7 +193486,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -193562,7 +193562,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -193626,7 +193626,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -193746,7 +193746,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -193790,7 +193790,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -193835,7 +193835,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -193850,7 +193850,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -193909,7 +193909,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemVersionCount", "ApiReferenceLink": null, @@ -193968,7 +193968,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemPermissionCount", "ApiReferenceLink": null, @@ -194027,7 +194027,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemSubscriptionCount", "ApiReferenceLink": null, @@ -194071,7 +194071,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemThumbnailCount", "ApiReferenceLink": null, @@ -194115,7 +194115,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemVersionContent", "ApiReferenceLink": null, @@ -194130,7 +194130,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemVersionCount", "ApiReferenceLink": null, @@ -194194,7 +194194,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -194269,7 +194269,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListColumnCount", "ApiReferenceLink": null, @@ -194357,7 +194357,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnCount", "ApiReferenceLink": null, @@ -194401,7 +194401,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -194445,7 +194445,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -194490,7 +194490,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeCount", "ApiReferenceLink": null, @@ -194549,7 +194549,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -194696,7 +194696,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -194757,7 +194757,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -194802,7 +194802,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -194817,7 +194817,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -194876,7 +194876,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemVersionCount", "ApiReferenceLink": null, @@ -194935,7 +194935,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListOperationCount", "ApiReferenceLink": null, @@ -194979,7 +194979,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListSubscriptionCount", "ApiReferenceLink": null, @@ -195096,7 +195096,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -195170,7 +195170,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootChildContent", "ApiReferenceLink": null, @@ -195185,7 +195185,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootChildContentStream", "ApiReferenceLink": null, @@ -195200,7 +195200,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootChildCount", "ApiReferenceLink": null, @@ -195215,7 +195215,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootContent", "ApiReferenceLink": null, @@ -195230,7 +195230,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootContentStream", "ApiReferenceLink": null, @@ -195289,7 +195289,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -195365,7 +195365,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -195424,7 +195424,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -195542,7 +195542,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -195586,7 +195586,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -195631,7 +195631,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -195646,7 +195646,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -195705,7 +195705,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemVersionCount", "ApiReferenceLink": null, @@ -195764,7 +195764,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootPermissionCount", "ApiReferenceLink": null, @@ -195823,7 +195823,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootSubscriptionCount", "ApiReferenceLink": null, @@ -195867,7 +195867,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootThumbnailCount", "ApiReferenceLink": null, @@ -195911,7 +195911,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootVersionContent", "ApiReferenceLink": null, @@ -195926,7 +195926,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootVersionCount", "ApiReferenceLink": null, @@ -195970,7 +195970,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveSpecialContent", "ApiReferenceLink": null, @@ -195985,7 +195985,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveSpecialContentStream", "ApiReferenceLink": null, @@ -196000,7 +196000,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveSpecialCount", "ApiReferenceLink": null, @@ -196130,7 +196130,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventAttachmentCount", "ApiReferenceLink": null, @@ -196160,7 +196160,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventCount", "ApiReferenceLink": null, @@ -196298,7 +196298,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceAttachmentCount", "ApiReferenceLink": null, @@ -196328,7 +196328,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceCount", "ApiReferenceLink": null, @@ -196372,7 +196372,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceExtensionCount", "ApiReferenceLink": null, @@ -196445,7 +196445,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceAttachmentCount", "ApiReferenceLink": null, @@ -196475,7 +196475,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceCount", "ApiReferenceLink": null, @@ -196519,7 +196519,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceExtensionCount", "ApiReferenceLink": null, @@ -196563,7 +196563,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExtensionCount", "ApiReferenceLink": null, @@ -196653,7 +196653,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceAttachmentCount", "ApiReferenceLink": null, @@ -196683,7 +196683,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceCount", "ApiReferenceLink": null, @@ -196788,7 +196788,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceAttachmentCount", "ApiReferenceLink": null, @@ -196818,7 +196818,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceCount", "ApiReferenceLink": null, @@ -196862,7 +196862,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceExtensionCount", "ApiReferenceLink": null, @@ -196906,7 +196906,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExtensionCount", "ApiReferenceLink": null, @@ -196950,7 +196950,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserExtensionCount", "ApiReferenceLink": null, @@ -197011,7 +197011,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserFollowedSiteCount", "ApiReferenceLink": null, @@ -197087,7 +197087,7 @@ "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInferenceClassificationOverrideCount", "ApiReferenceLink": null, @@ -197161,7 +197161,7 @@ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionBitlockerRecoveryKeyCount", "ApiReferenceLink": null, @@ -197205,7 +197205,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionDataLossPreventionPolicyCount", "ApiReferenceLink": null, @@ -197298,7 +197298,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionPolicyLabelCount", "ApiReferenceLink": null, @@ -197359,7 +197359,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabelCount", "ApiReferenceLink": null, @@ -197403,7 +197403,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabelSublabelCount", "ApiReferenceLink": null, @@ -197462,7 +197462,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequestCount", "ApiReferenceLink": null, @@ -197506,7 +197506,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequestResultCount", "ApiReferenceLink": null, @@ -197582,7 +197582,7 @@ "OutputType": "IMicrosoftGraphSharedInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightSharedCount", "ApiReferenceLink": null, @@ -197690,7 +197690,7 @@ "OutputType": "IMicrosoftGraphTrending" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightTrendingCount", "ApiReferenceLink": null, @@ -197800,7 +197800,7 @@ "OutputType": "IMicrosoftGraphUsedInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightUsedCount", "ApiReferenceLink": null, @@ -198034,7 +198034,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserLicenseDetailCount", "ApiReferenceLink": null, @@ -198090,7 +198090,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserLicenseDetailTeamLicensingDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-beta", @@ -198342,7 +198342,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderCount", "ApiReferenceLink": null, @@ -198463,7 +198463,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageAttachmentCount", "ApiReferenceLink": null, @@ -198478,7 +198478,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageContent", "ApiReferenceLink": null, @@ -198493,7 +198493,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageCount", "ApiReferenceLink": null, @@ -198552,7 +198552,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageExtensionCount", "ApiReferenceLink": null, @@ -198596,7 +198596,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageMentionCount", "ApiReferenceLink": null, @@ -198640,7 +198640,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageRuleCount", "ApiReferenceLink": null, @@ -198684,7 +198684,7 @@ "OutputType": "IMicrosoftGraphUserConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderUserConfigurationCount", "ApiReferenceLink": null, @@ -198699,7 +198699,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderCount", "ApiReferenceLink": null, @@ -198911,7 +198911,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageAttachmentCount", "ApiReferenceLink": null, @@ -198926,7 +198926,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageContent", "ApiReferenceLink": null, @@ -198966,7 +198966,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageCount", "ApiReferenceLink": null, @@ -199091,7 +199091,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageExtensionCount", "ApiReferenceLink": null, @@ -199135,7 +199135,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageMentionCount", "ApiReferenceLink": null, @@ -199179,7 +199179,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageRuleCount", "ApiReferenceLink": null, @@ -199223,7 +199223,7 @@ "OutputType": "IMicrosoftGraphUserConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderUserConfigurationCount", "ApiReferenceLink": null, @@ -199238,7 +199238,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaUserMailTip", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-getmailtips?view=graph-rest-beta", @@ -199272,7 +199272,7 @@ "OutputType": "IMicrosoftGraphMailTips" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedAppBlockedUser", "ApiReferenceLink": null, @@ -199319,7 +199319,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedAppDiagnosticStatus", "ApiReferenceLink": null, @@ -199412,7 +199412,7 @@ "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedAppRegistrationCount", "ApiReferenceLink": null, @@ -199485,7 +199485,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetailCount", "ApiReferenceLink": null, @@ -199515,7 +199515,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCloudPcRemoteActionResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta", @@ -199530,7 +199530,7 @@ "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCloudPcReviewStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta", @@ -199574,7 +199574,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCompliancePolicyStateCount", "ApiReferenceLink": null, @@ -199618,7 +199618,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceConfigurationStateCount", "ApiReferenceLink": null, @@ -199633,7 +199633,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCount", "ApiReferenceLink": null, @@ -199677,7 +199677,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceDetectedAppCount", "ApiReferenceLink": null, @@ -199692,7 +199692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceFileVaultKey", "ApiReferenceLink": null, @@ -199736,7 +199736,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceHealthScriptStateCount", "ApiReferenceLink": null, @@ -199751,7 +199751,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceLogCollectionRequestCount", "ApiReferenceLink": null, @@ -199824,7 +199824,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceMobileAppConfigurationStateCount", "ApiReferenceLink": null, @@ -199839,7 +199839,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceNonCompliantSetting", "ApiReferenceLink": null, @@ -199883,7 +199883,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineStateCount", "ApiReferenceLink": null, @@ -199927,7 +199927,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineStateSettingStateCount", "ApiReferenceLink": null, @@ -200000,7 +200000,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount", "ApiReferenceLink": null, @@ -200015,7 +200015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWithAppFailure", "ApiReferenceLink": null, @@ -200047,7 +200047,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWithFailedApp", "ApiReferenceLink": null, @@ -200127,7 +200127,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagerByRef", "ApiReferenceLink": null, @@ -200175,7 +200175,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaUserMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", @@ -200273,7 +200273,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaUserMemberObject", "ApiReferenceLink": null, @@ -200604,7 +200604,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfCount", "ApiReferenceLink": null, @@ -200652,7 +200652,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -200684,7 +200684,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfCountAsDirectoryRole", "ApiReferenceLink": null, @@ -200716,7 +200716,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -200864,7 +200864,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageAttachmentCount", "ApiReferenceLink": null, @@ -200879,7 +200879,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageContent", "ApiReferenceLink": null, @@ -200919,7 +200919,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageCount", "ApiReferenceLink": null, @@ -201036,7 +201036,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageExtensionCount", "ApiReferenceLink": null, @@ -201080,7 +201080,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageMentionCount", "ApiReferenceLink": null, @@ -201158,7 +201158,7 @@ "OutputType": "IMicrosoftGraphMobileAppIntentAndState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMobileAppIntentAndStateCount", "ApiReferenceLink": null, @@ -201248,7 +201248,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequestCount", "ApiReferenceLink": null, @@ -201263,7 +201263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEventCount", "ApiReferenceLink": null, @@ -201307,7 +201307,7 @@ "OutputType": "IMicrosoftGraphNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserNotificationCount", "ApiReferenceLink": null, @@ -201368,7 +201368,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOauth2PermissionGrantCount", "ApiReferenceLink": null, @@ -201511,7 +201511,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteNotebookCount", "ApiReferenceLink": null, @@ -201567,7 +201567,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaUserOnenoteNotebookFromWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-beta", @@ -201791,7 +201791,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteOperationCount", "ApiReferenceLink": null, @@ -201901,7 +201901,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenotePageContent", "ApiReferenceLink": null, @@ -201949,7 +201949,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenotePageCount", "ApiReferenceLink": null, @@ -201997,7 +201997,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteRecentNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-beta", @@ -202068,7 +202068,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteResourceContent", "ApiReferenceLink": null, @@ -202116,7 +202116,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteResourceCount", "ApiReferenceLink": null, @@ -202242,7 +202242,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteSectionCount", "ApiReferenceLink": null, @@ -202410,7 +202410,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteSectionGroupCount", "ApiReferenceLink": null, @@ -202665,7 +202665,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAlternativeRecording", "ApiReferenceLink": null, @@ -202784,7 +202784,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecordCount", "ApiReferenceLink": null, @@ -202801,7 +202801,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReportCount", "ApiReferenceLink": null, @@ -202816,7 +202816,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendeeReport", "ApiReferenceLink": null, @@ -202831,7 +202831,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingBroadcastRecording", "ApiReferenceLink": null, @@ -202894,7 +202894,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingCount", "ApiReferenceLink": null, @@ -202942,7 +202942,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingJoinWebUrlVirtualAppointmentJoinWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta", @@ -202990,7 +202990,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -203062,7 +203062,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRecordingContent", "ApiReferenceLink": null, @@ -203077,7 +203077,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRecordingCount", "ApiReferenceLink": null, @@ -203201,7 +203201,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistrationCustomQuestionCount", "ApiReferenceLink": null, @@ -203270,7 +203270,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistrationRegistrantCount", "ApiReferenceLink": null, @@ -203339,7 +203339,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscriptContent", "ApiReferenceLink": null, @@ -203354,7 +203354,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscriptCount", "ApiReferenceLink": null, @@ -203384,7 +203384,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscriptMetadataContent", "ApiReferenceLink": null, @@ -203399,7 +203399,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingVirtualAppointmentJoinWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta", @@ -203492,7 +203492,7 @@ "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookMasterCategoryCount", "ApiReferenceLink": null, @@ -203565,7 +203565,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskAttachmentCount", "ApiReferenceLink": null, @@ -203580,7 +203580,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskCount", "ApiReferenceLink": null, @@ -203624,7 +203624,7 @@ "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderCount", "ApiReferenceLink": null, @@ -203697,7 +203697,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTaskAttachmentCount", "ApiReferenceLink": null, @@ -203712,7 +203712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTaskCount", "ApiReferenceLink": null, @@ -203756,7 +203756,7 @@ "OutputType": "IMicrosoftGraphOutlookTaskGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupCount", "ApiReferenceLink": null, @@ -203800,7 +203800,7 @@ "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderCount", "ApiReferenceLink": null, @@ -203873,7 +203873,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachmentCount", "ApiReferenceLink": null, @@ -203888,7 +203888,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTaskCount", "ApiReferenceLink": null, @@ -204031,7 +204031,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceCount", "ApiReferenceLink": null, @@ -204087,7 +204087,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceCountAsDevice", "ApiReferenceLink": null, @@ -204102,7 +204102,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceCountAsEndpoint", "ApiReferenceLink": null, @@ -204274,7 +204274,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaUserOwnedObjectByType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", @@ -204289,7 +204289,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectCount", "ApiReferenceLink": null, @@ -204345,7 +204345,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectCountAsApplication", "ApiReferenceLink": null, @@ -204360,7 +204360,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectCountAsGroup", "ApiReferenceLink": null, @@ -204375,7 +204375,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectCountAsServicePrincipal", "ApiReferenceLink": null, @@ -204390,7 +204390,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBetaUserPasswordSingleSignOnCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-getpasswordsinglesignoncredentials?view=graph-rest-beta", @@ -204476,7 +204476,7 @@ "OutputType": "IMicrosoftGraphPerson" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPersonCount", "ApiReferenceLink": null, @@ -204621,7 +204621,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPhotoContent", "ApiReferenceLink": null, @@ -204751,7 +204751,7 @@ "OutputType": "IMicrosoftGraphPlannerDelta" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerAllCount", "ApiReferenceLink": null, @@ -204868,7 +204868,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerFavoritePlanCount", "ApiReferenceLink": null, @@ -204970,7 +204970,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerMyDayTaskCount", "ApiReferenceLink": null, @@ -205179,7 +205179,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerRecentPlanCount", "ApiReferenceLink": null, @@ -205281,7 +205281,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerRosterPlanCount", "ApiReferenceLink": null, @@ -205631,7 +205631,7 @@ "OutputType": "IMicrosoftGraphUserAccountInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAccountCount", "ApiReferenceLink": null, @@ -205798,7 +205798,7 @@ "OutputType": "IMicrosoftGraphItemAddress" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAddressCount", "ApiReferenceLink": null, @@ -205965,7 +205965,7 @@ "OutputType": "IMicrosoftGraphPersonAnnualEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAnniversaryCount", "ApiReferenceLink": null, @@ -206132,7 +206132,7 @@ "OutputType": "IMicrosoftGraphPersonAward" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAwardCount", "ApiReferenceLink": null, @@ -206299,7 +206299,7 @@ "OutputType": "IMicrosoftGraphPersonCertification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileCertificationCount", "ApiReferenceLink": null, @@ -206466,7 +206466,7 @@ "OutputType": "IMicrosoftGraphEducationalActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileEducationalActivityCount", "ApiReferenceLink": null, @@ -206633,7 +206633,7 @@ "OutputType": "IMicrosoftGraphItemEmail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileEmailCount", "ApiReferenceLink": null, @@ -206800,7 +206800,7 @@ "OutputType": "IMicrosoftGraphPersonInterest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileInterestCount", "ApiReferenceLink": null, @@ -206967,7 +206967,7 @@ "OutputType": "IMicrosoftGraphLanguageProficiency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileLanguageCount", "ApiReferenceLink": null, @@ -207134,7 +207134,7 @@ "OutputType": "IMicrosoftGraphPersonName" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileNameCount", "ApiReferenceLink": null, @@ -207301,7 +207301,7 @@ "OutputType": "IMicrosoftGraphPersonAnnotation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileNoteCount", "ApiReferenceLink": null, @@ -207468,7 +207468,7 @@ "OutputType": "IMicrosoftGraphItemPatent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePatentCount", "ApiReferenceLink": null, @@ -207635,7 +207635,7 @@ "OutputType": "IMicrosoftGraphItemPhone" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePhoneCount", "ApiReferenceLink": null, @@ -207802,7 +207802,7 @@ "OutputType": "IMicrosoftGraphWorkPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePositionCount", "ApiReferenceLink": null, @@ -207969,7 +207969,7 @@ "OutputType": "IMicrosoftGraphProjectParticipation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileProjectCount", "ApiReferenceLink": null, @@ -208136,7 +208136,7 @@ "OutputType": "IMicrosoftGraphItemPublication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePublicationCount", "ApiReferenceLink": null, @@ -208303,7 +208303,7 @@ "OutputType": "IMicrosoftGraphSkillProficiency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileSkillCount", "ApiReferenceLink": null, @@ -208470,7 +208470,7 @@ "OutputType": "IMicrosoftGraphWebAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileWebAccountCount", "ApiReferenceLink": null, @@ -208637,7 +208637,7 @@ "OutputType": "IMicrosoftGraphPersonWebsite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileWebsiteCount", "ApiReferenceLink": null, @@ -208821,7 +208821,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceCount", "ApiReferenceLink": null, @@ -208877,7 +208877,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceCountAsDevice", "ApiReferenceLink": null, @@ -208892,7 +208892,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceCountAsEndpoint", "ApiReferenceLink": null, @@ -208953,7 +208953,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserScopedRoleMemberOfCount", "ApiReferenceLink": null, @@ -209110,7 +209110,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabelCount", "ApiReferenceLink": null, @@ -209474,7 +209474,7 @@ "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingStorageQuotaServiceCount", "ApiReferenceLink": null, @@ -209551,7 +209551,7 @@ "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingWindowsCount", "ApiReferenceLink": null, @@ -209595,7 +209595,7 @@ "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingWindowsInstanceCount", "ApiReferenceLink": null, @@ -209664,7 +209664,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSponsorCount", "ApiReferenceLink": null, @@ -209792,7 +209792,7 @@ "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamworkAssociatedTeamCount", "ApiReferenceLink": null, @@ -210167,7 +210167,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamworkInstalledAppCount", "ApiReferenceLink": null, @@ -210420,7 +210420,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoListCount", "ApiReferenceLink": null, @@ -210537,7 +210537,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoListExtensionCount", "ApiReferenceLink": null, @@ -210742,7 +210742,7 @@ "OutputType": "IMicrosoftGraphAttachmentBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskAttachmentContent", "ApiReferenceLink": null, @@ -210790,7 +210790,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskAttachmentCount", "ApiReferenceLink": null, @@ -210867,7 +210867,7 @@ "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskAttachmentSessionContent", "ApiReferenceLink": null, @@ -210882,7 +210882,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskAttachmentSessionCount", "ApiReferenceLink": null, @@ -210992,7 +210992,7 @@ "OutputType": "IMicrosoftGraphChecklistItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskChecklistItemCount", "ApiReferenceLink": null, @@ -211040,7 +211040,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskCount", "ApiReferenceLink": null, @@ -211165,7 +211165,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskExtensionCount", "ApiReferenceLink": null, @@ -211275,7 +211275,7 @@ "OutputType": "IMicrosoftGraphLinkedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskLinkedResourceCount", "ApiReferenceLink": null, @@ -211488,7 +211488,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -211552,7 +211552,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -211567,7 +211567,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfCountAsDirectoryRole", "ApiReferenceLink": null, @@ -211582,7 +211582,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -211626,7 +211626,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveReportCount", "ApiReferenceLink": null, @@ -211670,7 +211670,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserWindowsInformationProtectionDeviceRegistrationCount", "ApiReferenceLink": null, @@ -211714,7 +211714,7 @@ "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventCount", "ApiReferenceLink": null, @@ -211757,7 +211757,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterCount", "ApiReferenceLink": null, @@ -211816,7 +211816,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterSessionCount", "ApiReferenceLink": null, @@ -211918,7 +211918,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecordCount", "ApiReferenceLink": null, @@ -211933,7 +211933,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReportCount", "ApiReferenceLink": null, @@ -211963,7 +211963,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionCount", "ApiReferenceLink": null, @@ -212007,7 +212007,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionPresenterCount", "ApiReferenceLink": null, @@ -212081,7 +212081,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistrationCount", "ApiReferenceLink": null, @@ -212155,7 +212155,7 @@ "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallCount", "ApiReferenceLink": null, @@ -212198,7 +212198,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterCount", "ApiReferenceLink": null, @@ -212257,7 +212257,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterSessionCount", "ApiReferenceLink": null, @@ -212359,7 +212359,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount", "ApiReferenceLink": null, @@ -212374,7 +212374,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReportCount", "ApiReferenceLink": null, @@ -212404,7 +212404,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionCount", "ApiReferenceLink": null, @@ -212448,7 +212448,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionPresenterCount", "ApiReferenceLink": null, @@ -212522,7 +212522,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistrationCount", "ApiReferenceLink": null, @@ -212596,7 +212596,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarCount", "ApiReferenceLink": null, @@ -212639,7 +212639,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterCount", "ApiReferenceLink": null, @@ -212698,7 +212698,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterSessionCount", "ApiReferenceLink": null, @@ -212787,7 +212787,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinarRegistrationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationCount", "ApiReferenceLink": null, @@ -212846,7 +212846,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationSessionCount", "ApiReferenceLink": null, @@ -212948,7 +212948,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount", "ApiReferenceLink": null, @@ -212963,7 +212963,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReportCount", "ApiReferenceLink": null, @@ -212993,7 +212993,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionCount", "ApiReferenceLink": null, @@ -213037,7 +213037,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionPresenterCount", "ApiReferenceLink": null, @@ -213111,7 +213111,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistrationCount", "ApiReferenceLink": null, @@ -214237,7 +214237,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessAppointmentCount", "ApiReferenceLink": null, @@ -214347,7 +214347,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCalendarViewCount", "ApiReferenceLink": null, @@ -214395,7 +214395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCount", "ApiReferenceLink": null, @@ -214537,7 +214537,7 @@ "OutputType": "IMicrosoftGraphBookingCustomerBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCustomerCount", "ApiReferenceLink": null, @@ -214680,7 +214680,7 @@ "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCustomQuestionCount", "ApiReferenceLink": null, @@ -214823,7 +214823,7 @@ "OutputType": "IMicrosoftGraphBookingService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessServiceCount", "ApiReferenceLink": null, @@ -214871,7 +214871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgBookingBusinessStaffAvailability", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-1.0", @@ -215024,7 +215024,7 @@ "OutputType": "IMicrosoftGraphBookingStaffMemberBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessStaffMemberCount", "ApiReferenceLink": null, @@ -215167,7 +215167,7 @@ "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingCurrencyCount", "ApiReferenceLink": null, @@ -215357,7 +215357,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatCount", "ApiReferenceLink": null, @@ -215643,7 +215643,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatInstalledAppCount", "ApiReferenceLink": null, @@ -216071,7 +216071,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMemberCount", "ApiReferenceLink": null, @@ -216303,7 +216303,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageCount", "ApiReferenceLink": null, @@ -216568,7 +216568,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageHostedContentCount", "ApiReferenceLink": null, @@ -216669,7 +216669,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageReplyCount", "ApiReferenceLink": null, @@ -216730,7 +216730,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -216871,7 +216871,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatPermissionGrantCount", "ApiReferenceLink": null, @@ -217055,7 +217055,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatPinnedMessageCount", "ApiReferenceLink": null, @@ -217254,7 +217254,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatTabCount", "ApiReferenceLink": null, @@ -217428,7 +217428,7 @@ "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallAudioRoutingGroupCount", "ApiReferenceLink": null, @@ -217555,7 +217555,7 @@ "OutputType": "IMicrosoftGraphContentSharingSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallContentSharingSessionCount", "ApiReferenceLink": null, @@ -217603,7 +217603,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallCount", "ApiReferenceLink": null, @@ -217646,7 +217646,7 @@ "OutputType": "IMicrosoftGraphCommsOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallOperationCount", "ApiReferenceLink": null, @@ -217724,7 +217724,7 @@ "OutputType": "IMicrosoftGraphParticipant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallParticipantCount", "ApiReferenceLink": null, @@ -217771,7 +217771,7 @@ "OutputType": "IMicrosoftGraphCallRecordsCallRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallRecordCount", "ApiReferenceLink": null, @@ -217814,7 +217814,7 @@ "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallRecordSessionCount", "ApiReferenceLink": null, @@ -217829,7 +217829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallRecordSessionSegmentCount", "ApiReferenceLink": null, @@ -217966,7 +217966,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount", "ApiReferenceLink": null, @@ -217981,7 +217981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportCount", "ApiReferenceLink": null, @@ -217996,7 +217996,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendeeReport", "ApiReferenceLink": null, @@ -218011,7 +218011,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingCount", "ApiReferenceLink": null, @@ -218087,7 +218087,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingRecordingContent", "ApiReferenceLink": null, @@ -218102,7 +218102,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingRecordingCount", "ApiReferenceLink": null, @@ -218146,7 +218146,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscriptContent", "ApiReferenceLink": null, @@ -218161,7 +218161,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscriptCount", "ApiReferenceLink": null, @@ -218176,7 +218176,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscriptMetadataContent", "ApiReferenceLink": null, @@ -218191,7 +218191,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0", @@ -218260,7 +218260,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgCommunicationPresenceByUserId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-1.0", @@ -218292,7 +218292,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationPresenceCount", "ApiReferenceLink": null, @@ -218424,7 +218424,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgContactById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -218439,7 +218439,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactCount", "ApiReferenceLink": null, @@ -218637,7 +218637,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDirectReportCount", "ApiReferenceLink": null, @@ -218685,7 +218685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDirectReportCountAsOrgContact", "ApiReferenceLink": null, @@ -218700,7 +218700,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDirectReportCountAsUser", "ApiReferenceLink": null, @@ -218763,7 +218763,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgContactMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -218861,7 +218861,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgContactMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -219095,7 +219095,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactMemberOfCount", "ApiReferenceLink": null, @@ -219143,7 +219143,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -219158,7 +219158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -219187,7 +219187,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -219314,7 +219314,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -219354,7 +219354,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -219369,7 +219369,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -219447,7 +219447,7 @@ "OutputType": "IMicrosoftGraphContract" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgContractById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -219462,7 +219462,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContractCount", "ApiReferenceLink": null, @@ -219524,7 +219524,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgContractMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -219541,7 +219541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgContractMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -219604,7 +219604,7 @@ "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDataPolicyOperationCount", "ApiReferenceLink": null, @@ -228935,7 +228935,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -228950,7 +228950,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceCount", "ApiReferenceLink": null, @@ -229040,7 +229040,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceExtensionCount", "ApiReferenceLink": null, @@ -229260,7 +229260,7 @@ "OutputType": "IMicrosoftGraphAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementAuditEventAuditActivityType", "ApiReferenceLink": null, @@ -229292,7 +229292,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementAuditEventAuditCategory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-auditing-auditevent-getauditcategories?view=graph-rest-1.0", @@ -229323,7 +229323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementAuditEventCount", "ApiReferenceLink": null, @@ -229449,7 +229449,7 @@ "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementComplianceManagementPartnerCount", "ApiReferenceLink": null, @@ -229638,7 +229638,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDetectedAppCount", "ApiReferenceLink": null, @@ -229748,7 +229748,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDetectedAppManagedDeviceCount", "ApiReferenceLink": null, @@ -229875,7 +229875,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCategoryCount", "ApiReferenceLink": null, @@ -230048,7 +230048,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount", "ApiReferenceLink": null, @@ -230080,7 +230080,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyCount", "ApiReferenceLink": null, @@ -230174,7 +230174,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount", "ApiReferenceLink": null, @@ -230300,7 +230300,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount", "ApiReferenceLink": null, @@ -230427,7 +230427,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount", "ApiReferenceLink": null, @@ -230522,7 +230522,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount", "ApiReferenceLink": null, @@ -230617,7 +230617,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount", "ApiReferenceLink": null, @@ -230711,7 +230711,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount", "ApiReferenceLink": null, @@ -230806,7 +230806,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount", "ApiReferenceLink": null, @@ -230996,7 +230996,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationAssignmentCount", "ApiReferenceLink": null, @@ -231028,7 +231028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationCount", "ApiReferenceLink": null, @@ -231122,7 +231122,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount", "ApiReferenceLink": null, @@ -231248,7 +231248,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount", "ApiReferenceLink": null, @@ -231312,7 +231312,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue", "ApiReferenceLink": null, @@ -231407,7 +231407,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatusCount", "ApiReferenceLink": null, @@ -231661,7 +231661,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount", "ApiReferenceLink": null, @@ -231709,7 +231709,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationCount", "ApiReferenceLink": null, @@ -231756,7 +231756,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementEffectivePermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-rbac-devicemanagement-geteffectivepermissions?view=graph-rest-1.0", @@ -231883,7 +231883,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementExchangeConnectorCount", "ApiReferenceLink": null, @@ -231993,7 +231993,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount", "ApiReferenceLink": null, @@ -232087,7 +232087,7 @@ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementIoUpdateStatusCount", "ApiReferenceLink": null, @@ -232257,7 +232257,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount", "ApiReferenceLink": null, @@ -232301,7 +232301,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceConfigurationStateCount", "ApiReferenceLink": null, @@ -232316,7 +232316,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceCount", "ApiReferenceLink": null, @@ -232392,7 +232392,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount", "ApiReferenceLink": null, @@ -232512,7 +232512,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount", "ApiReferenceLink": null, @@ -232685,7 +232685,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount", "ApiReferenceLink": null, @@ -232733,7 +232733,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventCount", "ApiReferenceLink": null, @@ -232859,7 +232859,7 @@ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementMobileThreatDefenseConnectorCount", "ApiReferenceLink": null, @@ -232969,7 +232969,7 @@ "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplateCount", "ApiReferenceLink": null, @@ -233063,7 +233063,7 @@ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount", "ApiReferenceLink": null, @@ -233190,7 +233190,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementPartnerCount", "ApiReferenceLink": null, @@ -233332,7 +233332,7 @@ "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRemoteAssistancePartnerCount", "ApiReferenceLink": null, @@ -233458,7 +233458,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementReports" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportCachedReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcachedreport?view=graph-rest-1.0", @@ -233522,7 +233522,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancereport?view=graph-rest-1.0", @@ -233586,7 +233586,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancesummaryreport?view=graph-rest-1.0", @@ -233650,7 +233650,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcompliancesettingnoncompliancereport?view=graph-rest-1.0", @@ -233714,7 +233714,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancereport?view=graph-rest-1.0", @@ -233778,7 +233778,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancesummaryreport?view=graph-rest-1.0", @@ -233842,7 +233842,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getconfigurationsettingnoncompliancereport?view=graph-rest-1.0", @@ -233906,7 +233906,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdevicemanagementintentpersettingcontributingprofiles?view=graph-rest-1.0", @@ -233970,7 +233970,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdevicemanagementintentsettingsreport?view=graph-rest-1.0", @@ -234034,7 +234034,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportDeviceNonComplianceReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdevicenoncompliancereport?view=graph-rest-1.0", @@ -234098,7 +234098,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportDeviceWithoutCompliancePolicyReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdeviceswithoutcompliancepolicyreport?view=graph-rest-1.0", @@ -234289,7 +234289,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExportJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementReportExportJobCount", "ApiReferenceLink": null, @@ -234352,7 +234352,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportFilter", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getreportfilters?view=graph-rest-1.0", @@ -234416,7 +234416,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportHistoricalReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-gethistoricalreport?view=graph-rest-1.0", @@ -234480,7 +234480,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportNoncompliantDeviceAndSettingReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getnoncompliantdevicesandsettingsreport?view=graph-rest-1.0", @@ -234544,7 +234544,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getpolicynoncompliancemetadata?view=graph-rest-1.0", @@ -234608,7 +234608,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportPolicyNonComplianceReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getpolicynoncompliancereport?view=graph-rest-1.0", @@ -234672,7 +234672,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getpolicynoncompliancesummaryreport?view=graph-rest-1.0", @@ -234736,7 +234736,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceManagementReportSettingNonComplianceReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getsettingnoncompliancereport?view=graph-rest-1.0", @@ -234895,7 +234895,7 @@ "OutputType": "IMicrosoftGraphResourceOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementResourceOperationCount", "ApiReferenceLink": null, @@ -235037,7 +235037,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleAssignmentCount", "ApiReferenceLink": null, @@ -235194,7 +235194,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleDefinitionCount", "ApiReferenceLink": null, @@ -235336,7 +235336,7 @@ "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount", "ApiReferenceLink": null, @@ -235526,7 +235526,7 @@ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartnerCount", "ApiReferenceLink": null, @@ -235683,7 +235683,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount", "ApiReferenceLink": null, @@ -235810,7 +235810,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAssignmentCount", "ApiReferenceLink": null, @@ -235842,7 +235842,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionCount", "ApiReferenceLink": null, @@ -235936,7 +235936,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTroubleshootingEventCount", "ApiReferenceLink": null, @@ -236157,7 +236157,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetailCount", "ApiReferenceLink": null, @@ -236299,7 +236299,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceIdCount", "ApiReferenceLink": null, @@ -236441,7 +236441,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversionCount", "ApiReferenceLink": null, @@ -236488,7 +236488,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceCount", "ApiReferenceLink": null, @@ -236630,7 +236630,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformanceCount", "ApiReferenceLink": null, @@ -236772,7 +236772,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceCount", "ApiReferenceLink": null, @@ -236914,7 +236914,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetailCount", "ApiReferenceLink": null, @@ -237056,7 +237056,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformanceCount", "ApiReferenceLink": null, @@ -237179,7 +237179,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValueCount", "ApiReferenceLink": null, @@ -237432,7 +237432,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineCount", "ApiReferenceLink": null, @@ -237733,7 +237733,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryCount", "ApiReferenceLink": null, @@ -237776,7 +237776,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValueCount", "ApiReferenceLink": null, @@ -237886,7 +237886,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformanceCount", "ApiReferenceLink": null, @@ -238028,7 +238028,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScoreCount", "ApiReferenceLink": null, @@ -238170,7 +238170,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistoryCount", "ApiReferenceLink": null, @@ -238312,7 +238312,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessCount", "ApiReferenceLink": null, @@ -238454,7 +238454,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformanceCount", "ApiReferenceLink": null, @@ -238596,7 +238596,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistoryCount", "ApiReferenceLink": null, @@ -238738,7 +238738,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScoreCount", "ApiReferenceLink": null, @@ -238927,7 +238927,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistoryCount", "ApiReferenceLink": null, @@ -239116,7 +239116,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricCount", "ApiReferenceLink": null, @@ -239258,7 +239258,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDeviceCount", "ApiReferenceLink": null, @@ -239401,7 +239401,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformanceCount", "ApiReferenceLink": null, @@ -239525,7 +239525,7 @@ "OutputType": "IMicrosoftGraphCloudPcAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-1.0", @@ -239556,7 +239556,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointAuditEventCount", "ApiReferenceLink": null, @@ -239650,7 +239650,7 @@ "OutputType": "IMicrosoftGraphCloudPc" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointCloudPcCount", "ApiReferenceLink": null, @@ -239744,7 +239744,7 @@ "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImageCount", "ApiReferenceLink": null, @@ -239775,7 +239775,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-1.0", @@ -239869,7 +239869,7 @@ "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImageCount", "ApiReferenceLink": null, @@ -239963,7 +239963,7 @@ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount", "ApiReferenceLink": null, @@ -240115,7 +240115,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount", "ApiReferenceLink": null, @@ -240159,7 +240159,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -240174,7 +240174,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount", "ApiReferenceLink": null, @@ -240189,7 +240189,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount", "ApiReferenceLink": null, @@ -240312,7 +240312,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount", "ApiReferenceLink": null, @@ -240327,7 +240327,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingCount", "ApiReferenceLink": null, @@ -240421,7 +240421,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount", "ApiReferenceLink": null, @@ -240515,7 +240515,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount", "ApiReferenceLink": null, @@ -240609,7 +240609,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount", "ApiReferenceLink": null, @@ -240735,7 +240735,7 @@ "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsMalwareInformationCount", "ApiReferenceLink": null, @@ -240877,7 +240877,7 @@ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount", "ApiReferenceLink": null, @@ -240925,7 +240925,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -241023,7 +241023,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDeviceMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -241257,7 +241257,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceMemberOfCount", "ApiReferenceLink": null, @@ -241305,7 +241305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -241320,7 +241320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -241498,7 +241498,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerByRef", "ApiReferenceLink": null, @@ -241545,7 +241545,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerCount", "ApiReferenceLink": null, @@ -241593,7 +241593,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerCountAsAppRoleAssignment", "ApiReferenceLink": null, @@ -241608,7 +241608,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerCountAsEndpoint", "ApiReferenceLink": null, @@ -241623,7 +241623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerCountAsServicePrincipal", "ApiReferenceLink": null, @@ -241638,7 +241638,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerCountAsUser", "ApiReferenceLink": null, @@ -241816,7 +241816,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserByRef", "ApiReferenceLink": null, @@ -241863,7 +241863,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserCount", "ApiReferenceLink": null, @@ -241911,7 +241911,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserCountAsAppRoleAssignment", "ApiReferenceLink": null, @@ -241926,7 +241926,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserCountAsEndpoint", "ApiReferenceLink": null, @@ -241941,7 +241941,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserCountAsServicePrincipal", "ApiReferenceLink": null, @@ -241956,7 +241956,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserCountAsUser", "ApiReferenceLink": null, @@ -242091,7 +242091,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -242139,7 +242139,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -242154,7 +242154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -242278,7 +242278,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitCount", "ApiReferenceLink": null, @@ -242401,7 +242401,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitExtensionCount", "ApiReferenceLink": null, @@ -242835,7 +242835,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberByRef", "ApiReferenceLink": null, @@ -242882,7 +242882,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberCount", "ApiReferenceLink": null, @@ -242930,7 +242930,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsApplication", "ApiReferenceLink": null, @@ -242978,7 +242978,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsDevice", "ApiReferenceLink": null, @@ -243026,7 +243026,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsGroup", "ApiReferenceLink": null, @@ -243074,7 +243074,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsOrgContact", "ApiReferenceLink": null, @@ -243122,7 +243122,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsServicePrincipal", "ApiReferenceLink": null, @@ -243170,7 +243170,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsUser", "ApiReferenceLink": null, @@ -243313,7 +243313,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMemberCount", "ApiReferenceLink": null, @@ -243424,7 +243424,7 @@ "OutputType": "IMicrosoftGraphAttributeSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAttributeSetCount", "ApiReferenceLink": null, @@ -243581,7 +243581,7 @@ "OutputType": "IMicrosoftGraphAllowedValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount", "ApiReferenceLink": null, @@ -243613,7 +243613,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionCount", "ApiReferenceLink": null, @@ -243833,7 +243833,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryDeletedItemById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -243848,7 +243848,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -243862,7 +243862,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsApplication", "ApiReferenceLink": null, @@ -243876,7 +243876,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsDevice", "ApiReferenceLink": null, @@ -243890,7 +243890,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsGroup", "ApiReferenceLink": null, @@ -243904,7 +243904,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsServicePrincipal", "ApiReferenceLink": null, @@ -243918,7 +243918,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsUser", "ApiReferenceLink": null, @@ -243932,7 +243932,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryDeletedItemMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -243949,7 +243949,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryDeletedItemMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -243995,7 +243995,7 @@ "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryDeviceLocalCredentialCount", "ApiReferenceLink": null, @@ -244072,7 +244072,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryFederationConfigurationCount", "ApiReferenceLink": null, @@ -244132,7 +244132,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryObjectAvailableExtensionProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getavailableextensionproperties?view=graph-rest-1.0", @@ -244147,7 +244147,7 @@ "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryObjectById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -244162,7 +244162,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryObjectCount", "ApiReferenceLink": null, @@ -244190,7 +244190,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryObjectMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -244288,7 +244288,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryObjectMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -244448,7 +244448,7 @@ "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryOnPremiseSynchronizationCount", "ApiReferenceLink": null, @@ -244574,7 +244574,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryRoleById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -244637,7 +244637,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleCount", "ApiReferenceLink": null, @@ -244952,7 +244952,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberByRef", "ApiReferenceLink": null, @@ -244999,7 +244999,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCount", "ApiReferenceLink": null, @@ -245047,7 +245047,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsApplication", "ApiReferenceLink": null, @@ -245062,7 +245062,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsDevice", "ApiReferenceLink": null, @@ -245077,7 +245077,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsGroup", "ApiReferenceLink": null, @@ -245092,7 +245092,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsOrgContact", "ApiReferenceLink": null, @@ -245107,7 +245107,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsServicePrincipal", "ApiReferenceLink": null, @@ -245122,7 +245122,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsUser", "ApiReferenceLink": null, @@ -245137,7 +245137,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryRoleMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -245154,7 +245154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryRoleMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -245233,7 +245233,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleScopedMemberCount", "ApiReferenceLink": null, @@ -245376,7 +245376,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryRoleTemplateById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -245391,7 +245391,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleTemplateCount", "ApiReferenceLink": null, @@ -245485,7 +245485,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryRoleTemplateMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -245502,7 +245502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgDirectoryRoleTemplateMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -245563,7 +245563,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectorySubscriptionCount", "ApiReferenceLink": null, @@ -245656,7 +245656,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainCount", "ApiReferenceLink": null, @@ -245741,7 +245741,7 @@ "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainFederationConfigurationCount", "ApiReferenceLink": null, @@ -245802,7 +245802,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainNameReferenceCount", "ApiReferenceLink": null, @@ -245880,7 +245880,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainServiceConfigurationRecordCount", "ApiReferenceLink": null, @@ -245958,7 +245958,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainVerificationDnsRecordCount", "ApiReferenceLink": null, @@ -246097,7 +246097,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveBundleContent", "ApiReferenceLink": null, @@ -246112,7 +246112,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveBundleCount", "ApiReferenceLink": null, @@ -246171,7 +246171,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -246230,7 +246230,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -246274,7 +246274,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveFollowingContent", "ApiReferenceLink": null, @@ -246289,7 +246289,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveFollowingCount", "ApiReferenceLink": null, @@ -246522,7 +246522,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -246743,7 +246743,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemChildContent", "ApiReferenceLink": null, @@ -246758,7 +246758,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemChildCount", "ApiReferenceLink": null, @@ -246822,7 +246822,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemContent", "ApiReferenceLink": null, @@ -246886,7 +246886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemCount", "ApiReferenceLink": null, @@ -246945,7 +246945,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -247021,7 +247021,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -247085,7 +247085,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -247193,7 +247193,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -247237,7 +247237,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -247282,7 +247282,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -247341,7 +247341,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemVersionCount", "ApiReferenceLink": null, @@ -247498,7 +247498,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemPermissionCount", "ApiReferenceLink": null, @@ -247606,7 +247606,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemSubscriptionCount", "ApiReferenceLink": null, @@ -247699,7 +247699,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemThumbnailCount", "ApiReferenceLink": null, @@ -247890,7 +247890,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemVersionContent", "ApiReferenceLink": null, @@ -247954,7 +247954,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemVersionCount", "ApiReferenceLink": null, @@ -248067,7 +248067,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -248128,7 +248128,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListColumnCount", "ApiReferenceLink": null, @@ -248216,7 +248216,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnCount", "ApiReferenceLink": null, @@ -248260,7 +248260,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -248304,7 +248304,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -248349,7 +248349,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeCount", "ApiReferenceLink": null, @@ -248408,7 +248408,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -248499,7 +248499,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemCount", "ApiReferenceLink": null, @@ -248558,7 +248558,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -248619,7 +248619,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -248664,7 +248664,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -248723,7 +248723,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemVersionCount", "ApiReferenceLink": null, @@ -248782,7 +248782,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListOperationCount", "ApiReferenceLink": null, @@ -248826,7 +248826,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListSubscriptionCount", "ApiReferenceLink": null, @@ -248931,7 +248931,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -249005,7 +249005,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootChildContent", "ApiReferenceLink": null, @@ -249020,7 +249020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootChildCount", "ApiReferenceLink": null, @@ -249035,7 +249035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootContent", "ApiReferenceLink": null, @@ -249094,7 +249094,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -249219,7 +249219,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -249278,7 +249278,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -249384,7 +249384,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -249428,7 +249428,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -249473,7 +249473,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -249532,7 +249532,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemVersionCount", "ApiReferenceLink": null, @@ -249591,7 +249591,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootPermissionCount", "ApiReferenceLink": null, @@ -249650,7 +249650,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootSubscriptionCount", "ApiReferenceLink": null, @@ -249694,7 +249694,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootThumbnailCount", "ApiReferenceLink": null, @@ -249738,7 +249738,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootVersionContent", "ApiReferenceLink": null, @@ -249753,7 +249753,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootVersionCount", "ApiReferenceLink": null, @@ -249797,7 +249797,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveSpecialContent", "ApiReferenceLink": null, @@ -249812,7 +249812,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveSpecialCount", "ApiReferenceLink": null, @@ -250225,7 +250225,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -250304,7 +250304,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentCategoryCount", "ApiReferenceLink": null, @@ -250468,7 +250468,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentCount", "ApiReferenceLink": null, @@ -250882,7 +250882,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentResourceCount", "ApiReferenceLink": null, @@ -251042,7 +251042,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentRubricByRef", "ApiReferenceLink": null, @@ -251231,7 +251231,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSettingGradingCategoryCount", "ApiReferenceLink": null, @@ -251405,7 +251405,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionCount", "ApiReferenceLink": null, @@ -251547,7 +251547,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionOutcomeCount", "ApiReferenceLink": null, @@ -251754,7 +251754,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionResourceCount", "ApiReferenceLink": null, @@ -251993,7 +251993,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResourceCount", "ApiReferenceLink": null, @@ -252073,7 +252073,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassCount", "ApiReferenceLink": null, @@ -252253,7 +252253,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -252315,7 +252315,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassMemberByRef", "ApiReferenceLink": null, @@ -252362,7 +252362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassMemberCount", "ApiReferenceLink": null, @@ -252505,7 +252505,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassModuleCount", "ApiReferenceLink": null, @@ -252648,7 +252648,7 @@ "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassModuleResourceCount", "ApiReferenceLink": null, @@ -252750,7 +252750,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassSchoolCount", "ApiReferenceLink": null, @@ -252829,7 +252829,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassTeacherByRef", "ApiReferenceLink": null, @@ -252868,7 +252868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassTeacherCount", "ApiReferenceLink": null, @@ -253055,7 +253055,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -253069,7 +253069,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentCategoryCount", "ApiReferenceLink": null, @@ -253099,7 +253099,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentCount", "ApiReferenceLink": null, @@ -253236,7 +253236,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentResourceCount", "ApiReferenceLink": null, @@ -253266,7 +253266,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentRubricByRef", "ApiReferenceLink": null, @@ -253310,7 +253310,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionCount", "ApiReferenceLink": null, @@ -253354,7 +253354,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionOutcomeCount", "ApiReferenceLink": null, @@ -253398,7 +253398,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionResourceCount", "ApiReferenceLink": null, @@ -253442,7 +253442,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResourceCount", "ApiReferenceLink": null, @@ -253511,7 +253511,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeClassCount", "ApiReferenceLink": null, @@ -253645,7 +253645,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeRubricCount", "ApiReferenceLink": null, @@ -253746,7 +253746,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeSchoolCount", "ApiReferenceLink": null, @@ -253839,7 +253839,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeTaughtClassCount", "ApiReferenceLink": null, @@ -253977,7 +253977,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -254187,7 +254187,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchoolClassByRef", "ApiReferenceLink": null, @@ -254226,7 +254226,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchoolClassCount", "ApiReferenceLink": null, @@ -254266,7 +254266,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchoolCount", "ApiReferenceLink": null, @@ -254407,7 +254407,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchoolUserByRef", "ApiReferenceLink": null, @@ -254438,7 +254438,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchoolUserCount", "ApiReferenceLink": null, @@ -254651,7 +254651,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -254665,7 +254665,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentCategoryCount", "ApiReferenceLink": null, @@ -254695,7 +254695,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentCount", "ApiReferenceLink": null, @@ -254834,7 +254834,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentResourceCount", "ApiReferenceLink": null, @@ -254864,7 +254864,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentRubricByRef", "ApiReferenceLink": null, @@ -254908,7 +254908,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionCount", "ApiReferenceLink": null, @@ -254952,7 +254952,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionOutcomeCount", "ApiReferenceLink": null, @@ -254996,7 +254996,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionResourceCount", "ApiReferenceLink": null, @@ -255040,7 +255040,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResourceCount", "ApiReferenceLink": null, @@ -255109,7 +255109,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserClassCount", "ApiReferenceLink": null, @@ -255149,7 +255149,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserCount", "ApiReferenceLink": null, @@ -255295,7 +255295,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserRubricCount", "ApiReferenceLink": null, @@ -255364,7 +255364,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserSchoolCount", "ApiReferenceLink": null, @@ -255418,7 +255418,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -255487,7 +255487,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserTaughtClassCount", "ApiReferenceLink": null, @@ -255590,7 +255590,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-1.0", @@ -255622,7 +255622,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalCount", "ApiReferenceLink": null, @@ -255699,7 +255699,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStageCount", "ApiReferenceLink": null, @@ -255775,7 +255775,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageCount", "ApiReferenceLink": null, @@ -255837,7 +255837,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "ApiReferenceLink": null, @@ -255899,7 +255899,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroupByRef", "ApiReferenceLink": null, @@ -256072,7 +256072,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentCount", "ApiReferenceLink": null, @@ -256198,7 +256198,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCount", "ApiReferenceLink": null, @@ -256258,7 +256258,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount", "ApiReferenceLink": null, @@ -256317,7 +256317,7 @@ "OutputType": "IMicrosoftGraphAccessPackageQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyQuestionCount", "ApiReferenceLink": null, @@ -256395,7 +256395,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentRequestCount", "ApiReferenceLink": null, @@ -256489,7 +256489,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogAccessPackageCount", "ApiReferenceLink": null, @@ -256504,7 +256504,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogCount", "ApiReferenceLink": null, @@ -256564,7 +256564,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogCustomWorkflowExtensionCount", "ApiReferenceLink": null, @@ -256608,7 +256608,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceCount", "ApiReferenceLink": null, @@ -256673,7 +256673,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleCount", "ApiReferenceLink": null, @@ -256758,7 +256758,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount", "ApiReferenceLink": null, @@ -256838,7 +256838,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount", "ApiReferenceLink": null, @@ -256888,7 +256888,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeCount", "ApiReferenceLink": null, @@ -256973,7 +256973,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount", "ApiReferenceLink": null, @@ -257053,7 +257053,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount", "ApiReferenceLink": null, @@ -257131,7 +257131,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementConnectedOrganizationCount", "ApiReferenceLink": null, @@ -257193,7 +257193,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef", "ApiReferenceLink": null, @@ -257224,7 +257224,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorCount", "ApiReferenceLink": null, @@ -257287,7 +257287,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef", "ApiReferenceLink": null, @@ -257318,7 +257318,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorCount", "ApiReferenceLink": null, @@ -257379,7 +257379,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceCount", "ApiReferenceLink": null, @@ -257426,7 +257426,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentCount", "ApiReferenceLink": null, @@ -257469,7 +257469,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceCount", "ApiReferenceLink": null, @@ -257513,7 +257513,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleCount", "ApiReferenceLink": null, @@ -257587,7 +257587,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount", "ApiReferenceLink": null, @@ -257661,7 +257661,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeCount", "ApiReferenceLink": null, @@ -257735,7 +257735,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount", "ApiReferenceLink": null, @@ -257853,7 +257853,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackageCount", "ApiReferenceLink": null, @@ -257897,7 +257897,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount", "ApiReferenceLink": null, @@ -257941,7 +257941,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceCount", "ApiReferenceLink": null, @@ -258006,7 +258006,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount", "ApiReferenceLink": null, @@ -258091,7 +258091,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount", "ApiReferenceLink": null, @@ -258171,7 +258171,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount", "ApiReferenceLink": null, @@ -258221,7 +258221,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount", "ApiReferenceLink": null, @@ -258306,7 +258306,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount", "ApiReferenceLink": null, @@ -258386,7 +258386,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount", "ApiReferenceLink": null, @@ -258401,7 +258401,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCount", "ApiReferenceLink": null, @@ -258474,7 +258474,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleCount", "ApiReferenceLink": null, @@ -258548,7 +258548,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeCount", "ApiReferenceLink": null, @@ -258622,7 +258622,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeCount", "ApiReferenceLink": null, @@ -258696,7 +258696,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleCount", "ApiReferenceLink": null, @@ -258770,7 +258770,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleCount", "ApiReferenceLink": null, @@ -258844,7 +258844,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScopeCount", "ApiReferenceLink": null, @@ -258918,7 +258918,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeCount", "ApiReferenceLink": null, @@ -258991,7 +258991,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleCount", "ApiReferenceLink": null, @@ -259065,7 +259065,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount", "ApiReferenceLink": null, @@ -259109,7 +259109,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceScopeCount", "ApiReferenceLink": null, @@ -259198,7 +259198,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRoleCount", "ApiReferenceLink": null, @@ -259242,7 +259242,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeCount", "ApiReferenceLink": null, @@ -259316,7 +259316,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount", "ApiReferenceLink": null, @@ -259360,7 +259360,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeCount", "ApiReferenceLink": null, @@ -259434,7 +259434,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRoleCount", "ApiReferenceLink": null, @@ -259603,7 +259603,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionCount", "ApiReferenceLink": null, @@ -259696,7 +259696,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionGroupCount", "ApiReferenceLink": null, @@ -259740,7 +259740,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionGroupMemberCount", "ApiReferenceLink": null, @@ -259838,7 +259838,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionItemActivityCount", "ApiReferenceLink": null, @@ -259868,7 +259868,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionItemCount", "ApiReferenceLink": null, @@ -259937,7 +259937,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionOperationCount", "ApiReferenceLink": null, @@ -260134,7 +260134,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupAcceptedSenderByRef", "ApiReferenceLink": null, @@ -260165,7 +260165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupAcceptedSenderCount", "ApiReferenceLink": null, @@ -260251,7 +260251,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupAppRoleAssignmentCount", "ApiReferenceLink": null, @@ -260291,7 +260291,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -260525,7 +260525,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupCalendarPermissionCount", "ApiReferenceLink": null, @@ -260540,7 +260540,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupCalendarSchedule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0", @@ -260666,7 +260666,7 @@ "OutputType": "IMicrosoftGraphConversation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationCount", "ApiReferenceLink": null, @@ -260809,7 +260809,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadCount", "ApiReferenceLink": null, @@ -261016,7 +261016,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostAttachmentCount", "ApiReferenceLink": null, @@ -261064,7 +261064,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostCount", "ApiReferenceLink": null, @@ -261141,7 +261141,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostExtensionCount", "ApiReferenceLink": null, @@ -261185,7 +261185,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToAttachmentCount", "ApiReferenceLink": null, @@ -261229,7 +261229,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToExtensionCount", "ApiReferenceLink": null, @@ -261244,7 +261244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupCount", "ApiReferenceLink": null, @@ -261540,7 +261540,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveBundleContent", "ApiReferenceLink": null, @@ -261555,7 +261555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveBundleCount", "ApiReferenceLink": null, @@ -261614,7 +261614,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -261629,7 +261629,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveCount", "ApiReferenceLink": null, @@ -261737,7 +261737,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -261781,7 +261781,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveFollowingContent", "ApiReferenceLink": null, @@ -261796,7 +261796,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveFollowingCount", "ApiReferenceLink": null, @@ -261915,7 +261915,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -261989,7 +261989,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemChildContent", "ApiReferenceLink": null, @@ -262004,7 +262004,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemChildCount", "ApiReferenceLink": null, @@ -262019,7 +262019,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemContent", "ApiReferenceLink": null, @@ -262034,7 +262034,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemCount", "ApiReferenceLink": null, @@ -262093,7 +262093,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -262169,7 +262169,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -262233,7 +262233,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -262341,7 +262341,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -262385,7 +262385,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -262430,7 +262430,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -262489,7 +262489,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemVersionCount", "ApiReferenceLink": null, @@ -262548,7 +262548,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemPermissionCount", "ApiReferenceLink": null, @@ -262607,7 +262607,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemSubscriptionCount", "ApiReferenceLink": null, @@ -262651,7 +262651,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemThumbnailCount", "ApiReferenceLink": null, @@ -262695,7 +262695,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemVersionContent", "ApiReferenceLink": null, @@ -262710,7 +262710,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemVersionCount", "ApiReferenceLink": null, @@ -262774,7 +262774,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -262835,7 +262835,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListColumnCount", "ApiReferenceLink": null, @@ -262923,7 +262923,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnCount", "ApiReferenceLink": null, @@ -262967,7 +262967,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -263011,7 +263011,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -263056,7 +263056,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeCount", "ApiReferenceLink": null, @@ -263115,7 +263115,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -263250,7 +263250,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -263311,7 +263311,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -263356,7 +263356,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -263415,7 +263415,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemVersionCount", "ApiReferenceLink": null, @@ -263474,7 +263474,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListOperationCount", "ApiReferenceLink": null, @@ -263518,7 +263518,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListSubscriptionCount", "ApiReferenceLink": null, @@ -263623,7 +263623,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -263697,7 +263697,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootChildContent", "ApiReferenceLink": null, @@ -263712,7 +263712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootChildCount", "ApiReferenceLink": null, @@ -263727,7 +263727,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootContent", "ApiReferenceLink": null, @@ -263786,7 +263786,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -263862,7 +263862,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -263921,7 +263921,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -264027,7 +264027,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -264071,7 +264071,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -264116,7 +264116,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -264175,7 +264175,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemVersionCount", "ApiReferenceLink": null, @@ -264234,7 +264234,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootPermissionCount", "ApiReferenceLink": null, @@ -264293,7 +264293,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootSubscriptionCount", "ApiReferenceLink": null, @@ -264337,7 +264337,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootThumbnailCount", "ApiReferenceLink": null, @@ -264381,7 +264381,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootVersionContent", "ApiReferenceLink": null, @@ -264396,7 +264396,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootVersionCount", "ApiReferenceLink": null, @@ -264440,7 +264440,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveSpecialContent", "ApiReferenceLink": null, @@ -264455,7 +264455,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveSpecialCount", "ApiReferenceLink": null, @@ -264578,7 +264578,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventAttachmentCount", "ApiReferenceLink": null, @@ -264608,7 +264608,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventCount", "ApiReferenceLink": null, @@ -264709,7 +264709,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventExtensionCount", "ApiReferenceLink": null, @@ -264799,7 +264799,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventInstanceAttachmentCount", "ApiReferenceLink": null, @@ -264829,7 +264829,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventInstanceCount", "ApiReferenceLink": null, @@ -264890,7 +264890,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventInstanceExtensionCount", "ApiReferenceLink": null, @@ -264934,7 +264934,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupExtensionCount", "ApiReferenceLink": null, @@ -265045,7 +265045,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupLifecyclePolicyCount", "ApiReferenceLink": null, @@ -265305,7 +265305,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberByRef", "ApiReferenceLink": null, @@ -265360,7 +265360,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberCount", "ApiReferenceLink": null, @@ -265416,7 +265416,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberCountAsApplication", "ApiReferenceLink": null, @@ -265431,7 +265431,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberCountAsDevice", "ApiReferenceLink": null, @@ -265446,7 +265446,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberCountAsGroup", "ApiReferenceLink": null, @@ -265461,7 +265461,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberCountAsOrgContact", "ApiReferenceLink": null, @@ -265476,7 +265476,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberCountAsServicePrincipal", "ApiReferenceLink": null, @@ -265491,7 +265491,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberCountAsUser", "ApiReferenceLink": null, @@ -265506,7 +265506,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -265604,7 +265604,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -265838,7 +265838,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberOfCount", "ApiReferenceLink": null, @@ -265886,7 +265886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -265901,7 +265901,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -266119,7 +266119,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCount", "ApiReferenceLink": null, @@ -266134,7 +266134,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsApplication", "ApiReferenceLink": null, @@ -266149,7 +266149,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsDevice", "ApiReferenceLink": null, @@ -266164,7 +266164,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsGroup", "ApiReferenceLink": null, @@ -266179,7 +266179,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsOrgContact", "ApiReferenceLink": null, @@ -266194,7 +266194,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsServicePrincipal", "ApiReferenceLink": null, @@ -266209,7 +266209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsUser", "ApiReferenceLink": null, @@ -266335,7 +266335,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteNotebookCount", "ApiReferenceLink": null, @@ -266391,7 +266391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupOnenoteNotebookFromWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0", @@ -266615,7 +266615,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteOperationCount", "ApiReferenceLink": null, @@ -266725,7 +266725,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenotePageContent", "ApiReferenceLink": null, @@ -266740,7 +266740,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenotePageCount", "ApiReferenceLink": null, @@ -266788,7 +266788,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteRecentNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0", @@ -266859,7 +266859,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteResourceContent", "ApiReferenceLink": null, @@ -266907,7 +266907,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteResourceCount", "ApiReferenceLink": null, @@ -267033,7 +267033,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteSectionCount", "ApiReferenceLink": null, @@ -267201,7 +267201,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteSectionGroupCount", "ApiReferenceLink": null, @@ -267590,7 +267590,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerByRef", "ApiReferenceLink": null, @@ -267645,7 +267645,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerCount", "ApiReferenceLink": null, @@ -267701,7 +267701,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerCountAsApplication", "ApiReferenceLink": null, @@ -267716,7 +267716,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerCountAsDevice", "ApiReferenceLink": null, @@ -267731,7 +267731,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerCountAsGroup", "ApiReferenceLink": null, @@ -267746,7 +267746,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerCountAsOrgContact", "ApiReferenceLink": null, @@ -267761,7 +267761,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerCountAsServicePrincipal", "ApiReferenceLink": null, @@ -267776,7 +267776,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerCountAsUser", "ApiReferenceLink": null, @@ -267853,7 +267853,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPermissionGrantCount", "ApiReferenceLink": null, @@ -267982,7 +267982,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPhotoContent", "ApiReferenceLink": null, @@ -268131,7 +268131,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPlannerPlanCount", "ApiReferenceLink": null, @@ -268255,7 +268255,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupRejectedSenderByRef", "ApiReferenceLink": null, @@ -268286,7 +268286,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupRejectedSenderCount", "ApiReferenceLink": null, @@ -268416,7 +268416,7 @@ "OutputType": "IMicrosoftGraphGroupSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSettingCount", "ApiReferenceLink": null, @@ -268465,7 +268465,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupSettingTemplateById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -268480,7 +268480,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSettingTemplateCount", "ApiReferenceLink": null, @@ -268605,7 +268605,7 @@ "OutputType": "IMicrosoftGraphGroupSettingTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupSettingTemplateMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -268622,7 +268622,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupSettingTemplateMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -268758,7 +268758,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivityCount", "ApiReferenceLink": null, @@ -268788,7 +268788,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent", "ApiReferenceLink": null, @@ -268803,7 +268803,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -268863,7 +268863,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteByPath", "ApiReferenceLink": null, @@ -268907,7 +268907,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteColumnCount", "ApiReferenceLink": null, @@ -269015,7 +269015,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -269061,7 +269061,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnCount", "ApiReferenceLink": null, @@ -269105,7 +269105,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -269149,7 +269149,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -269194,7 +269194,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeCount", "ApiReferenceLink": null, @@ -269209,7 +269209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteCount", "ApiReferenceLink": null, @@ -269268,7 +269268,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -269342,7 +269342,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteDriveCount", "ApiReferenceLink": null, @@ -269386,7 +269386,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteExternalColumnCount", "ApiReferenceLink": null, @@ -269679,7 +269679,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetGraphBPrePathByPath", "ApiReferenceLink": null, @@ -269757,7 +269757,7 @@ "OutputType": "IMicrosoftGraphBaseItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteItemCount", "ApiReferenceLink": null, @@ -269816,7 +269816,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -269880,7 +269880,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -269955,7 +269955,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListColumnCount", "ApiReferenceLink": null, @@ -270043,7 +270043,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnCount", "ApiReferenceLink": null, @@ -270087,7 +270087,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -270131,7 +270131,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -270176,7 +270176,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeCount", "ApiReferenceLink": null, @@ -270191,7 +270191,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListCount", "ApiReferenceLink": null, @@ -270250,7 +270250,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -270385,7 +270385,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -270446,7 +270446,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -270491,7 +270491,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemDriveItemContent", "ApiReferenceLink": null, @@ -270550,7 +270550,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemVersionCount", "ApiReferenceLink": null, @@ -270609,7 +270609,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListOperationCount", "ApiReferenceLink": null, @@ -270653,7 +270653,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListSubscriptionCount", "ApiReferenceLink": null, @@ -270712,7 +270712,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookCount", "ApiReferenceLink": null, @@ -270756,7 +270756,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionCount", "ApiReferenceLink": null, @@ -270803,7 +270803,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupCount", "ApiReferenceLink": null, @@ -270879,7 +270879,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionCount", "ApiReferenceLink": null, @@ -270923,7 +270923,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -270938,7 +270938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCount", "ApiReferenceLink": null, @@ -271042,7 +271042,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPageContent", "ApiReferenceLink": null, @@ -271057,7 +271057,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPageCount", "ApiReferenceLink": null, @@ -271161,7 +271161,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteOperationCount", "ApiReferenceLink": null, @@ -271205,7 +271205,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenotePageContent", "ApiReferenceLink": null, @@ -271220,7 +271220,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenotePageCount", "ApiReferenceLink": null, @@ -271294,7 +271294,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteResourceContent", "ApiReferenceLink": null, @@ -271309,7 +271309,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteResourceCount", "ApiReferenceLink": null, @@ -271353,7 +271353,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionCount", "ApiReferenceLink": null, @@ -271400,7 +271400,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupCount", "ApiReferenceLink": null, @@ -271476,7 +271476,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionCount", "ApiReferenceLink": null, @@ -271520,7 +271520,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -271535,7 +271535,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPageCount", "ApiReferenceLink": null, @@ -271639,7 +271639,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -271654,7 +271654,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPageCount", "ApiReferenceLink": null, @@ -271758,7 +271758,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOperationCount", "ApiReferenceLink": null, @@ -271904,7 +271904,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount", "ApiReferenceLink": null, @@ -271948,7 +271948,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount", "ApiReferenceLink": null, @@ -271963,7 +271963,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount", "ApiReferenceLink": null, @@ -272022,7 +272022,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount", "ApiReferenceLink": null, @@ -272081,7 +272081,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -272140,7 +272140,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -272184,7 +272184,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageWebPartCount", "ApiReferenceLink": null, @@ -272199,7 +272199,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageCount", "ApiReferenceLink": null, @@ -272214,7 +272214,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageCountAsSitePage", "ApiReferenceLink": null, @@ -272273,7 +272273,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -272332,7 +272332,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -272347,7 +272347,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", "ApiReferenceLink": null, @@ -272362,7 +272362,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", "ApiReferenceLink": null, @@ -272377,7 +272377,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgGroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", "ApiReferenceLink": null, @@ -272421,7 +272421,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePermissionCount", "ApiReferenceLink": null, @@ -272467,7 +272467,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreCount", "ApiReferenceLink": null, @@ -272514,7 +272514,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupCount", "ApiReferenceLink": null, @@ -272601,7 +272601,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildCount", "ApiReferenceLink": null, @@ -272660,7 +272660,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelationCount", "ApiReferenceLink": null, @@ -272765,7 +272765,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetCount", "ApiReferenceLink": null, @@ -272831,7 +272831,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelationCount", "ApiReferenceLink": null, @@ -272963,7 +272963,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildCount", "ApiReferenceLink": null, @@ -273012,7 +273012,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelationCount", "ApiReferenceLink": null, @@ -273097,7 +273097,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermCount", "ApiReferenceLink": null, @@ -273146,7 +273146,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelationCount", "ApiReferenceLink": null, @@ -273301,7 +273301,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildCount", "ApiReferenceLink": null, @@ -273360,7 +273360,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelationCount", "ApiReferenceLink": null, @@ -273465,7 +273465,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetCount", "ApiReferenceLink": null, @@ -273569,7 +273569,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildCount", "ApiReferenceLink": null, @@ -273628,7 +273628,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount", "ApiReferenceLink": null, @@ -273733,7 +273733,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetCount", "ApiReferenceLink": null, @@ -273782,7 +273782,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelationCount", "ApiReferenceLink": null, @@ -273914,7 +273914,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildCount", "ApiReferenceLink": null, @@ -273963,7 +273963,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationCount", "ApiReferenceLink": null, @@ -274048,7 +274048,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermCount", "ApiReferenceLink": null, @@ -274097,7 +274097,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationCount", "ApiReferenceLink": null, @@ -274214,7 +274214,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelationCount", "ApiReferenceLink": null, @@ -274346,7 +274346,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildCount", "ApiReferenceLink": null, @@ -274395,7 +274395,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelationCount", "ApiReferenceLink": null, @@ -274480,7 +274480,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermCount", "ApiReferenceLink": null, @@ -274529,7 +274529,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelationCount", "ApiReferenceLink": null, @@ -274643,7 +274643,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSubSiteCount", "ApiReferenceLink": null, @@ -274702,7 +274702,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelCount", "ApiReferenceLink": null, @@ -274732,7 +274732,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -274776,7 +274776,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMemberCount", "ApiReferenceLink": null, @@ -274820,7 +274820,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageCount", "ApiReferenceLink": null, @@ -274866,7 +274866,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -274910,7 +274910,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReplyCount", "ApiReferenceLink": null, @@ -274956,7 +274956,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -275031,7 +275031,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -275046,7 +275046,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -275090,7 +275090,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelTabCount", "ApiReferenceLink": null, @@ -275149,7 +275149,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -275193,7 +275193,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamIncomingChannelCount", "ApiReferenceLink": null, @@ -275237,7 +275237,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamInstalledAppCount", "ApiReferenceLink": null, @@ -275311,7 +275311,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamMemberCount", "ApiReferenceLink": null, @@ -275355,7 +275355,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamOperationCount", "ApiReferenceLink": null, @@ -275399,7 +275399,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPermissionGrantCount", "ApiReferenceLink": null, @@ -275429,7 +275429,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPhotoContent", "ApiReferenceLink": null, @@ -275474,7 +275474,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelFileFolderContent", "ApiReferenceLink": null, @@ -275518,7 +275518,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMemberCount", "ApiReferenceLink": null, @@ -275562,7 +275562,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageCount", "ApiReferenceLink": null, @@ -275608,7 +275608,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -275652,7 +275652,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReplyCount", "ApiReferenceLink": null, @@ -275698,7 +275698,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -275773,7 +275773,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -275788,7 +275788,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -275832,7 +275832,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelTabCount", "ApiReferenceLink": null, @@ -275906,7 +275906,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleOfferShiftRequestCount", "ApiReferenceLink": null, @@ -275979,7 +275979,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShiftChangeRequestCount", "ApiReferenceLink": null, @@ -275994,7 +275994,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShiftCount", "ApiReferenceLink": null, @@ -276038,7 +276038,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleSchedulingGroupCount", "ApiReferenceLink": null, @@ -276082,7 +276082,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleShiftCount", "ApiReferenceLink": null, @@ -276126,7 +276126,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleSwapShiftChangeRequestCount", "ApiReferenceLink": null, @@ -276170,7 +276170,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffCount", "ApiReferenceLink": null, @@ -276214,7 +276214,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffReasonCount", "ApiReferenceLink": null, @@ -276258,7 +276258,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffRequestCount", "ApiReferenceLink": null, @@ -276302,7 +276302,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamTagCount", "ApiReferenceLink": null, @@ -276346,7 +276346,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamTagMemberCount", "ApiReferenceLink": null, @@ -276471,7 +276471,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadCount", "ApiReferenceLink": null, @@ -276678,7 +276678,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostAttachmentCount", "ApiReferenceLink": null, @@ -276726,7 +276726,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostCount", "ApiReferenceLink": null, @@ -276803,7 +276803,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostExtensionCount", "ApiReferenceLink": null, @@ -276847,7 +276847,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToAttachmentCount", "ApiReferenceLink": null, @@ -276891,7 +276891,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToExtensionCount", "ApiReferenceLink": null, @@ -277150,7 +277150,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCount", "ApiReferenceLink": null, @@ -277206,7 +277206,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsApplication", "ApiReferenceLink": null, @@ -277221,7 +277221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsDevice", "ApiReferenceLink": null, @@ -277236,7 +277236,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsGroup", "ApiReferenceLink": null, @@ -277251,7 +277251,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsOrgContact", "ApiReferenceLink": null, @@ -277266,7 +277266,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsServicePrincipal", "ApiReferenceLink": null, @@ -277281,7 +277281,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsUser", "ApiReferenceLink": null, @@ -277416,7 +277416,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -277464,7 +277464,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -277479,7 +277479,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -277523,7 +277523,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityApiConnectorCount", "ApiReferenceLink": null, @@ -277600,7 +277600,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityAuthenticationEventListenerCount", "ApiReferenceLink": null, @@ -277709,7 +277709,7 @@ "OutputType": "IMicrosoftGraphUserFlowApiConnectorConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowCount", "ApiReferenceLink": null, @@ -277770,7 +277770,7 @@ "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowIdentityProviderByRef", "ApiReferenceLink": null, @@ -277784,7 +277784,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowIdentityProviderCount", "ApiReferenceLink": null, @@ -277864,7 +277864,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguageCount", "ApiReferenceLink": null, @@ -277959,7 +277959,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPageContent", "ApiReferenceLink": null, @@ -277991,7 +277991,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPageCount", "ApiReferenceLink": null, @@ -278086,7 +278086,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePageContent", "ApiReferenceLink": null, @@ -278118,7 +278118,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePageCount", "ApiReferenceLink": null, @@ -278165,7 +278165,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowPostAttributeCollectionByRef", "ApiReferenceLink": null, @@ -278195,7 +278195,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowPostFederationSignupByRef", "ApiReferenceLink": null, @@ -278273,7 +278273,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentCount", "ApiReferenceLink": null, @@ -278305,7 +278305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-getorder?view=graph-rest-1.0", @@ -278398,7 +278398,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReferenceCount", "ApiReferenceLink": null, @@ -278458,7 +278458,7 @@ "OutputType": "IMicrosoftGraphNamedLocation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessNamedLocationCount", "ApiReferenceLink": null, @@ -278501,7 +278501,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessPolicyCount", "ApiReferenceLink": null, @@ -278544,7 +278544,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessTemplateCount", "ApiReferenceLink": null, @@ -278621,7 +278621,7 @@ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityCustomAuthenticationExtensionCount", "ApiReferenceLink": null, @@ -278715,7 +278715,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionCount", "ApiReferenceLink": null, @@ -278855,7 +278855,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount", "ApiReferenceLink": null, @@ -278887,7 +278887,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount", "ApiReferenceLink": null, @@ -278982,7 +278982,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount", "ApiReferenceLink": null, @@ -279043,7 +279043,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount", "ApiReferenceLink": null, @@ -279121,7 +279121,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount", "ApiReferenceLink": null, @@ -279216,7 +279216,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount", "ApiReferenceLink": null, @@ -279306,7 +279306,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinitionCount", "ApiReferenceLink": null, @@ -279349,7 +279349,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount", "ApiReferenceLink": null, @@ -279427,7 +279427,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestCount", "ApiReferenceLink": null, @@ -279565,7 +279565,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount", "ApiReferenceLink": null, @@ -279580,7 +279580,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestCount", "ApiReferenceLink": null, @@ -279675,7 +279675,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCount", "ApiReferenceLink": null, @@ -279750,7 +279750,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -279828,7 +279828,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount", "ApiReferenceLink": null, @@ -279903,7 +279903,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -279962,7 +279962,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -280054,7 +280054,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount", "ApiReferenceLink": null, @@ -280335,7 +280335,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowExecutionScopeCount", "ApiReferenceLink": null, @@ -280411,7 +280411,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -280489,7 +280489,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunCount", "ApiReferenceLink": null, @@ -280567,7 +280567,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount", "ApiReferenceLink": null, @@ -280643,7 +280643,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -280736,7 +280736,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount", "ApiReferenceLink": null, @@ -280812,7 +280812,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -280950,7 +280950,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskCount", "ApiReferenceLink": null, @@ -281045,7 +281045,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount", "ApiReferenceLink": null, @@ -281122,7 +281122,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount", "ApiReferenceLink": null, @@ -281198,7 +281198,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -281274,7 +281274,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportCount", "ApiReferenceLink": null, @@ -281382,7 +281382,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount", "ApiReferenceLink": null, @@ -281458,7 +281458,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -281551,7 +281551,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateCount", "ApiReferenceLink": null, @@ -281611,7 +281611,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskCount", "ApiReferenceLink": null, @@ -281655,7 +281655,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount", "ApiReferenceLink": null, @@ -281714,7 +281714,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -281790,7 +281790,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount", "ApiReferenceLink": null, @@ -281866,7 +281866,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -281990,7 +281990,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCount", "ApiReferenceLink": null, @@ -282066,7 +282066,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -282125,7 +282125,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -282203,7 +282203,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskCount", "ApiReferenceLink": null, @@ -282264,7 +282264,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount", "ApiReferenceLink": null, @@ -282323,7 +282323,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -282410,7 +282410,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount", "ApiReferenceLink": null, @@ -282453,7 +282453,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount", "ApiReferenceLink": null, @@ -282546,7 +282546,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount", "ApiReferenceLink": null, @@ -282606,7 +282606,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -282699,7 +282699,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount", "ApiReferenceLink": null, @@ -282759,7 +282759,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -282882,7 +282882,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount", "ApiReferenceLink": null, @@ -282942,7 +282942,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -283050,7 +283050,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount", "ApiReferenceLink": null, @@ -283110,7 +283110,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -283188,7 +283188,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount", "ApiReferenceLink": null, @@ -283248,7 +283248,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -283356,7 +283356,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount", "ApiReferenceLink": null, @@ -283416,7 +283416,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -283522,7 +283522,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptanceCount", "ApiReferenceLink": null, @@ -283538,7 +283538,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementCount", "ApiReferenceLink": null, @@ -283581,7 +283581,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileCount", "ApiReferenceLink": null, @@ -283625,7 +283625,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationCount", "ApiReferenceLink": null, @@ -283669,7 +283669,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount", "ApiReferenceLink": null, @@ -283713,7 +283713,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersionCount", "ApiReferenceLink": null, @@ -283791,7 +283791,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityProviderCount", "ApiReferenceLink": null, @@ -283885,7 +283885,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityUserFlowAttributeCount", "ApiReferenceLink": null, @@ -284007,7 +284007,7 @@ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionBitlockerRecoveryKeyCount", "ApiReferenceLink": null, @@ -284101,7 +284101,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionThreatAssessmentRequestCount", "ApiReferenceLink": null, @@ -284161,7 +284161,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionThreatAssessmentRequestResultCount", "ApiReferenceLink": null, @@ -284205,7 +284205,7 @@ "OutputType": "IMicrosoftGraphInvitation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInvitationCount", "ApiReferenceLink": null, @@ -284248,7 +284248,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInvitationInvitedUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -284292,7 +284292,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInvitationInvitedUserSponsorCount", "ApiReferenceLink": null, @@ -284386,7 +284386,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOauth2PermissionGrantCount", "ApiReferenceLink": null, @@ -284655,7 +284655,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBranding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingBackgroundImage", "ApiReferenceLink": null, @@ -284670,7 +284670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingBannerLogo", "ApiReferenceLink": null, @@ -284685,7 +284685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingCustomCss", "ApiReferenceLink": null, @@ -284700,7 +284700,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingFavicon", "ApiReferenceLink": null, @@ -284715,7 +284715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingHeaderLogo", "ApiReferenceLink": null, @@ -284841,7 +284841,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalizationBackgroundImage", "ApiReferenceLink": null, @@ -284873,7 +284873,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalizationBannerLogo", "ApiReferenceLink": null, @@ -284905,7 +284905,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalizationCount", "ApiReferenceLink": null, @@ -284961,7 +284961,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalizationCustomCss", "ApiReferenceLink": null, @@ -284993,7 +284993,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalizationFavicon", "ApiReferenceLink": null, @@ -285025,7 +285025,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalizationHeaderLogo", "ApiReferenceLink": null, @@ -285057,7 +285057,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalizationSquareLogo", "ApiReferenceLink": null, @@ -285089,7 +285089,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalizationSquareLogoDark", "ApiReferenceLink": null, @@ -285121,7 +285121,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingSquareLogo", "ApiReferenceLink": null, @@ -285136,7 +285136,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingSquareLogoDark", "ApiReferenceLink": null, @@ -285151,7 +285151,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgOrganizationById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -285229,7 +285229,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationCertificateBasedAuthConfigurationCount", "ApiReferenceLink": null, @@ -285261,7 +285261,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationCount", "ApiReferenceLink": null, @@ -285377,7 +285377,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationExtensionCount", "ApiReferenceLink": null, @@ -285392,7 +285392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgOrganizationMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -285409,7 +285409,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgOrganizationMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -285513,7 +285513,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceAsRoomListRoomCount", "ApiReferenceLink": null, @@ -285528,7 +285528,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceCount", "ApiReferenceLink": null, @@ -285542,7 +285542,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceCountAsRoom", "ApiReferenceLink": null, @@ -285556,7 +285556,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceCountAsRoomList", "ApiReferenceLink": null, @@ -285711,7 +285711,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerBucketCount", "ApiReferenceLink": null, @@ -286027,7 +286027,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerPlanCount", "ApiReferenceLink": null, @@ -286472,7 +286472,7 @@ "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerTaskCount", "ApiReferenceLink": null, @@ -286771,7 +286771,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyActivityBasedTimeoutPolicyApplyToCount", "ApiReferenceLink": null, @@ -286786,7 +286786,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyActivityBasedTimeoutPolicyCount", "ApiReferenceLink": null, @@ -287013,7 +287013,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAppManagementPolicyApplyToCount", "ApiReferenceLink": null, @@ -287061,7 +287061,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAppManagementPolicyCount", "ApiReferenceLink": null, @@ -287174,7 +287174,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount", "ApiReferenceLink": null, @@ -287296,7 +287296,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount", "ApiReferenceLink": null, @@ -287311,7 +287311,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationStrengthPolicyCount", "ApiReferenceLink": null, @@ -287530,7 +287530,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyClaimMappingPolicyApplyToCount", "ApiReferenceLink": null, @@ -287586,7 +287586,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyClaimMappingPolicyCount", "ApiReferenceLink": null, @@ -287625,7 +287625,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyConditionalAccessPolicyCount", "ApiReferenceLink": null, @@ -287764,7 +287764,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyPartnerCount", "ApiReferenceLink": null, @@ -288007,7 +288007,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicyApplyToByRef", "ApiReferenceLink": null, @@ -288021,7 +288021,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicyApplyToCount", "ApiReferenceLink": null, @@ -288036,7 +288036,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicyCount", "ApiReferenceLink": null, @@ -288199,7 +288199,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyApplyToCount", "ApiReferenceLink": null, @@ -288255,7 +288255,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyCount", "ApiReferenceLink": null, @@ -288371,7 +288371,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicyCount", "ApiReferenceLink": null, @@ -288448,7 +288448,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicyExcludeCount", "ApiReferenceLink": null, @@ -288526,7 +288526,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicyIncludeCount", "ApiReferenceLink": null, @@ -288780,7 +288780,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyAssignmentCount", "ApiReferenceLink": null, @@ -288850,7 +288850,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyCount", "ApiReferenceLink": null, @@ -288975,7 +288975,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRuleCount", "ApiReferenceLink": null, @@ -289142,7 +289142,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyRuleCount", "ApiReferenceLink": null, @@ -289347,7 +289347,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenIssuancePolicyApplyToCount", "ApiReferenceLink": null, @@ -289403,7 +289403,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenIssuancePolicyCount", "ApiReferenceLink": null, @@ -289591,7 +289591,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenLifetimePolicyApplyToCount", "ApiReferenceLink": null, @@ -289647,7 +289647,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenLifetimePolicyCount", "ApiReferenceLink": null, @@ -289763,7 +289763,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintConnectorCount", "ApiReferenceLink": null, @@ -289848,7 +289848,7 @@ "OutputType": "IMicrosoftGraphPrintOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintOperationCount", "ApiReferenceLink": null, @@ -290011,7 +290011,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterConnectorCount", "ApiReferenceLink": null, @@ -290043,7 +290043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterCount", "ApiReferenceLink": null, @@ -290241,7 +290241,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobCount", "ApiReferenceLink": null, @@ -290383,7 +290383,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobDocumentContent", "ApiReferenceLink": null, @@ -290431,7 +290431,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobDocumentCount", "ApiReferenceLink": null, @@ -290475,7 +290475,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobTaskCount", "ApiReferenceLink": null, @@ -290599,7 +290599,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterShareCount", "ApiReferenceLink": null, @@ -290718,7 +290718,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterTaskTriggerCount", "ApiReferenceLink": null, @@ -291140,7 +291140,7 @@ "OutputType": "IMicrosoftGraphPrintService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintServiceCount", "ApiReferenceLink": null, @@ -291690,7 +291690,7 @@ "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintServiceEndpointCount", "ApiReferenceLink": null, @@ -291984,7 +291984,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedGroupByRef", "ApiReferenceLink": null, @@ -292015,7 +292015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedGroupCount", "ApiReferenceLink": null, @@ -292061,7 +292061,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -292107,7 +292107,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedUserByRef", "ApiReferenceLink": null, @@ -292138,7 +292138,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedUserCount", "ApiReferenceLink": null, @@ -292199,7 +292199,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -292214,7 +292214,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareCount", "ApiReferenceLink": null, @@ -292412,7 +292412,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobCount", "ApiReferenceLink": null, @@ -292521,7 +292521,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobDocumentContent", "ApiReferenceLink": null, @@ -292536,7 +292536,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobDocumentCount", "ApiReferenceLink": null, @@ -292580,7 +292580,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobTaskCount", "ApiReferenceLink": null, @@ -292696,7 +292696,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintTaskDefinitionCount", "ApiReferenceLink": null, @@ -292739,7 +292739,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintTaskDefinitionTaskCount", "ApiReferenceLink": null, @@ -292861,7 +292861,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApproverCount", "ApiReferenceLink": null, @@ -292905,7 +292905,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -292949,7 +292949,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaboratorCount", "ApiReferenceLink": null, @@ -292993,7 +292993,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -293008,7 +293008,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCount", "ApiReferenceLink": null, @@ -293085,7 +293085,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestNoteCount", "ApiReferenceLink": null, @@ -293209,7 +293209,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetailCount", "ApiReferenceLink": null, @@ -293269,7 +293269,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByPrinterCount", "ApiReferenceLink": null, @@ -293312,7 +293312,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByUserCount", "ApiReferenceLink": null, @@ -293326,7 +293326,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportDeviceConfigurationDeviceActivity", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-reportroot-deviceconfigurationdeviceactivity?view=graph-rest-1.0", @@ -293340,7 +293340,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportDeviceConfigurationUserActivity", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-reportroot-deviceconfigurationuseractivity?view=graph-rest-1.0", @@ -293354,7 +293354,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportEmailActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailactivitycounts?view=graph-rest-1.0", @@ -293369,7 +293369,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportEmailActivityUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailactivityusercounts?view=graph-rest-1.0", @@ -293384,7 +293384,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportEmailActivityUserDetail", "ApiReferenceLink": null, @@ -293401,7 +293401,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportEmailAppUsageAppUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailappusageappsusercounts?view=graph-rest-1.0", @@ -293416,7 +293416,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportEmailAppUsageUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailappusageusercounts?view=graph-rest-1.0", @@ -293431,7 +293431,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportEmailAppUsageUserDetail", "ApiReferenceLink": null, @@ -293448,7 +293448,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportEmailAppUsageVersionUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailappusageversionsusercounts?view=graph-rest-1.0", @@ -293463,7 +293463,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportGroupArchivedPrintJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getgrouparchivedprintjobs?view=graph-rest-1.0", @@ -293478,7 +293478,7 @@ "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportM365AppPlatformUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appplatformusercounts?view=graph-rest-1.0", @@ -293493,7 +293493,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportM365AppUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appusercounts?view=graph-rest-1.0", @@ -293508,7 +293508,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportM365AppUserDetail", "ApiReferenceLink": null, @@ -293525,7 +293525,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMailboxUsageDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagedetail?view=graph-rest-1.0", @@ -293540,7 +293540,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMailboxUsageMailboxCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagemailboxcounts?view=graph-rest-1.0", @@ -293555,7 +293555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMailboxUsageQuotaStatusMailboxCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagequotastatusmailboxcounts?view=graph-rest-1.0", @@ -293570,7 +293570,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMailboxUsageStorage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagestorage?view=graph-rest-1.0", @@ -293585,7 +293585,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportManagedDeviceEnrollmentFailureDetail", "ApiReferenceLink": null, @@ -293601,7 +293601,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportManagedDeviceEnrollmentTopFailure", "ApiReferenceLink": null, @@ -293646,7 +293646,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByPrinterCount", "ApiReferenceLink": null, @@ -293689,7 +293689,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByUserCount", "ApiReferenceLink": null, @@ -293703,7 +293703,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365ActivationCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activationcounts?view=graph-rest-1.0", @@ -293717,7 +293717,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365ActivationUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activationsusercounts?view=graph-rest-1.0", @@ -293731,7 +293731,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365ActivationUserDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activationsuserdetail?view=graph-rest-1.0", @@ -293745,7 +293745,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365ActiveUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activeusercounts?view=graph-rest-1.0", @@ -293760,7 +293760,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365ActiveUserDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activeuserdetail?view=graph-rest-1.0", @@ -293777,7 +293777,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitycounts?view=graph-rest-1.0", @@ -293792,7 +293792,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitydetail?view=graph-rest-1.0", @@ -293809,7 +293809,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityFileCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivityfilecounts?view=graph-rest-1.0", @@ -293824,7 +293824,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityGroupCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitygroupcounts?view=graph-rest-1.0", @@ -293839,7 +293839,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityStorage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitystorage?view=graph-rest-1.0", @@ -293854,7 +293854,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOffice365ServiceUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365servicesusercounts?view=graph-rest-1.0", @@ -293869,7 +293869,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOneDriveActivityFileCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveactivityfilecounts?view=graph-rest-1.0", @@ -293884,7 +293884,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOneDriveActivityUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveactivityusercounts?view=graph-rest-1.0", @@ -293899,7 +293899,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOneDriveActivityUserDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveactivityuserdetail?view=graph-rest-1.0", @@ -293916,7 +293916,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOneDriveUsageAccountCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusageaccountcounts?view=graph-rest-1.0", @@ -293931,7 +293931,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOneDriveUsageAccountDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusageaccountdetail?view=graph-rest-1.0", @@ -293948,7 +293948,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOneDriveUsageFileCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusagefilecounts?view=graph-rest-1.0", @@ -293963,7 +293963,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportOneDriveUsageStorage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusagestorage?view=graph-rest-1.0", @@ -294035,7 +294035,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingManifestCount", "ApiReferenceLink": null, @@ -294078,7 +294078,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingOperationCount", "ApiReferenceLink": null, @@ -294162,7 +294162,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPrinterArchivedPrintJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getprinterarchivedprintjobs?view=graph-rest-1.0", @@ -294206,7 +294206,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSecurityAttackSimulationRepeatOffender", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationrepeatoffenders?view=graph-rest-1.0", @@ -294220,7 +294220,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSecurityAttackSimulationTrainingUserCoverage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationtrainingusercoverage?view=graph-rest-1.0", @@ -294234,7 +294234,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSecurityAttackSimulationUserCoverage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationsimulationusercoverage?view=graph-rest-1.0", @@ -294248,7 +294248,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSharePointActivityFileCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivityfilecounts?view=graph-rest-1.0", @@ -294263,7 +294263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSharePointActivityPage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivitypages?view=graph-rest-1.0", @@ -294278,7 +294278,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSharePointActivityUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivityusercounts?view=graph-rest-1.0", @@ -294293,7 +294293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSharePointActivityUserDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivityuserdetail?view=graph-rest-1.0", @@ -294310,7 +294310,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSharePointSiteUsageDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagedetail?view=graph-rest-1.0", @@ -294327,7 +294327,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSharePointSiteUsageFileCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagefilecounts?view=graph-rest-1.0", @@ -294342,7 +294342,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSharePointSiteUsagePage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagepages?view=graph-rest-1.0", @@ -294357,7 +294357,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSharePointSiteUsageSiteCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagesitecounts?view=graph-rest-1.0", @@ -294372,7 +294372,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSharePointSiteUsageStorage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagestorage?view=graph-rest-1.0", @@ -294387,7 +294387,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessactivitycounts?view=graph-rest-1.0", @@ -294402,7 +294402,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessActivityUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessactivityusercounts?view=graph-rest-1.0", @@ -294417,7 +294417,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessActivityUserDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessactivityuserdetail?view=graph-rest-1.0", @@ -294434,7 +294434,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessDeviceUsageDistributionUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessdeviceusagedistributionusercounts?view=graph-rest-1.0", @@ -294449,7 +294449,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessDeviceUsageUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessdeviceusageusercounts?view=graph-rest-1.0", @@ -294464,7 +294464,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessDeviceUsageUserDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessdeviceusageuserdetail?view=graph-rest-1.0", @@ -294481,7 +294481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessOrganizerActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessorganizeractivitycounts?view=graph-rest-1.0", @@ -294496,7 +294496,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessOrganizerActivityMinuteCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessorganizeractivityminutecounts?view=graph-rest-1.0", @@ -294511,7 +294511,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessOrganizerActivityUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessorganizeractivityusercounts?view=graph-rest-1.0", @@ -294526,7 +294526,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessParticipantActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessparticipantactivitycounts?view=graph-rest-1.0", @@ -294541,7 +294541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessParticipantActivityMinuteCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessparticipantactivityminutecounts?view=graph-rest-1.0", @@ -294556,7 +294556,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessParticipantActivityUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessparticipantactivityusercounts?view=graph-rest-1.0", @@ -294571,7 +294571,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessPeerToPeerActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinesspeertopeeractivitycounts?view=graph-rest-1.0", @@ -294586,7 +294586,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessPeerToPeerActivityMinuteCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinesspeertopeeractivityminutecounts?view=graph-rest-1.0", @@ -294601,7 +294601,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSkypeForBusinessPeerToPeerActivityUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinesspeertopeeractivityusercounts?view=graph-rest-1.0", @@ -294616,7 +294616,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsteamactivitycounts?view=graph-rest-1.0", @@ -294631,7 +294631,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamActivityDetail", "ApiReferenceLink": null, @@ -294648,7 +294648,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamActivityDistributionCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsteamactivitydistributioncounts?view=graph-rest-1.0", @@ -294663,7 +294663,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsteamcounts?view=graph-rest-1.0", @@ -294678,7 +294678,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamDeviceUsageDistributionUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsdeviceusagedistributionusercounts?view=graph-rest-1.0", @@ -294693,7 +294693,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamDeviceUsageUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsdeviceusageusercounts?view=graph-rest-1.0", @@ -294708,7 +294708,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamDeviceUsageUserDetail", "ApiReferenceLink": null, @@ -294725,7 +294725,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamUserActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsuseractivitycounts?view=graph-rest-1.0", @@ -294740,7 +294740,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamUserActivityUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsuseractivityusercounts?view=graph-rest-1.0", @@ -294755,7 +294755,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportTeamUserActivityUserDetail", "ApiReferenceLink": null, @@ -294772,7 +294772,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportUserArchivedPrintJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getuserarchivedprintjobs?view=graph-rest-1.0", @@ -294787,7 +294787,7 @@ "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportYammerActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammeractivitycounts?view=graph-rest-1.0", @@ -294802,7 +294802,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportYammerActivityUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammeractivityusercounts?view=graph-rest-1.0", @@ -294817,7 +294817,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportYammerActivityUserDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammeractivityuserdetail?view=graph-rest-1.0", @@ -294834,7 +294834,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportYammerDeviceUsageDistributionUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammerdeviceusagedistributionusercounts?view=graph-rest-1.0", @@ -294849,7 +294849,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportYammerDeviceUsageUserCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammerdeviceusageusercounts?view=graph-rest-1.0", @@ -294864,7 +294864,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportYammerDeviceUsageUserDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammerdeviceusageuserdetail?view=graph-rest-1.0", @@ -294881,7 +294881,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportYammerGroupActivityCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammergroupsactivitycounts?view=graph-rest-1.0", @@ -294896,7 +294896,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportYammerGroupActivityDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammergroupsactivitydetail?view=graph-rest-1.0", @@ -294913,7 +294913,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportYammerGroupActivityGroupCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammergroupsactivitygroupcounts?view=graph-rest-1.0", @@ -294957,7 +294957,7 @@ "OutputType": "IMicrosoftGraphRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskDetectionCount", "ApiReferenceLink": null, @@ -295034,7 +295034,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyServicePrincipalCount", "ApiReferenceLink": null, @@ -295111,7 +295111,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyServicePrincipalHistoryCount", "ApiReferenceLink": null, @@ -295172,7 +295172,7 @@ "OutputType": "IMicrosoftGraphRiskyUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyUserCount", "ApiReferenceLink": null, @@ -295249,7 +295249,7 @@ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyUserHistoryCount", "ApiReferenceLink": null, @@ -295421,7 +295421,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryResourceNamespaceCount", "ApiReferenceLink": null, @@ -295539,7 +295539,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceActionCount", "ApiReferenceLink": null, @@ -295705,7 +295705,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentCount", "ApiReferenceLink": null, @@ -295946,7 +295946,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleCount", "ApiReferenceLink": null, @@ -296157,7 +296157,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount", "ApiReferenceLink": null, @@ -296413,7 +296413,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCount", "ApiReferenceLink": null, @@ -296654,7 +296654,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinitionCount", "ApiReferenceLink": null, @@ -296738,7 +296738,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount", "ApiReferenceLink": null, @@ -296879,7 +296879,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleCount", "ApiReferenceLink": null, @@ -297075,7 +297075,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount", "ApiReferenceLink": null, @@ -297316,7 +297316,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCount", "ApiReferenceLink": null, @@ -297489,7 +297489,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceCount", "ApiReferenceLink": null, @@ -297532,7 +297532,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount", "ApiReferenceLink": null, @@ -297705,7 +297705,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentCount", "ApiReferenceLink": null, @@ -297880,7 +297880,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleCount", "ApiReferenceLink": null, @@ -297968,7 +297968,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount", "ApiReferenceLink": null, @@ -298101,7 +298101,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount", "ApiReferenceLink": null, @@ -298429,7 +298429,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionCount", "ApiReferenceLink": null, @@ -298577,7 +298577,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount", "ApiReferenceLink": null, @@ -298636,7 +298636,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleCount", "ApiReferenceLink": null, @@ -298709,7 +298709,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount", "ApiReferenceLink": null, @@ -298827,7 +298827,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount", "ApiReferenceLink": null, @@ -298979,7 +298979,7 @@ "OutputType": "IMicrosoftGraphSchemaExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSchemaExtensionCount", "ApiReferenceLink": null, @@ -299073,7 +299073,7 @@ "OutputType": "IMicrosoftGraphSearchAcronym" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchAcronymCount", "ApiReferenceLink": null, @@ -299167,7 +299167,7 @@ "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchBookmarkCount", "ApiReferenceLink": null, @@ -299275,7 +299275,7 @@ "OutputType": "IMicrosoftGraphSearchQna" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchQnaCount", "ApiReferenceLink": null, @@ -299369,7 +299369,7 @@ "OutputType": "IMicrosoftGraphAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAlertCount", "ApiReferenceLink": null, @@ -299463,7 +299463,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAlertV2Count", "ApiReferenceLink": null, @@ -299553,7 +299553,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomationCount", "ApiReferenceLink": null, @@ -299596,7 +299596,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomationRunCount", "ApiReferenceLink": null, @@ -299611,7 +299611,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationCount", "ApiReferenceLink": null, @@ -299654,7 +299654,7 @@ "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotificationCount", "ApiReferenceLink": null, @@ -299697,7 +299697,7 @@ "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotificationDetailCount", "ApiReferenceLink": null, @@ -299743,7 +299743,7 @@ "OutputType": "IMicrosoftGraphLandingPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPageCount", "ApiReferenceLink": null, @@ -299786,7 +299786,7 @@ "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPageDetailCount", "ApiReferenceLink": null, @@ -299832,7 +299832,7 @@ "OutputType": "IMicrosoftGraphLoginPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLoginPageCount", "ApiReferenceLink": null, @@ -299875,7 +299875,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationOperationCount", "ApiReferenceLink": null, @@ -299920,7 +299920,7 @@ "OutputType": "IMicrosoftGraphPayload" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationPayloadCount", "ApiReferenceLink": null, @@ -299963,7 +299963,7 @@ "OutputType": "IMicrosoftGraphTraining" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTrainingCount", "ApiReferenceLink": null, @@ -300006,7 +300006,7 @@ "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTrainingLanguageDetailCount", "ApiReferenceLink": null, @@ -300098,7 +300098,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCount", "ApiReferenceLink": null, @@ -300192,7 +300192,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianCount", "ApiReferenceLink": null, @@ -300302,7 +300302,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount", "ApiReferenceLink": null, @@ -300395,7 +300395,7 @@ "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount", "ApiReferenceLink": null, @@ -300456,7 +300456,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -300517,7 +300517,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUserSourceCount", "ApiReferenceLink": null, @@ -300595,7 +300595,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount", "ApiReferenceLink": null, @@ -300671,7 +300671,7 @@ "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseOperationCount", "ApiReferenceLink": null, @@ -300766,7 +300766,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetCount", "ApiReferenceLink": null, @@ -300861,7 +300861,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetQueryCount", "ApiReferenceLink": null, @@ -300985,7 +300985,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount", "ApiReferenceLink": null, @@ -301015,7 +301015,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryAddToReviewSetOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchCount", "ApiReferenceLink": null, @@ -301076,7 +301076,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount", "ApiReferenceLink": null, @@ -301152,7 +301152,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount", "ApiReferenceLink": null, @@ -301291,7 +301291,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTagChildTagCount", "ApiReferenceLink": null, @@ -301306,7 +301306,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTagCount", "ApiReferenceLink": null, @@ -301445,7 +301445,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityIncidentAlertCommentCount", "ApiReferenceLink": null, @@ -301460,7 +301460,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityIncidentAlertCount", "ApiReferenceLink": null, @@ -301475,7 +301475,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityIncidentCount", "ApiReferenceLink": null, @@ -301549,7 +301549,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelAuthorityCount", "ApiReferenceLink": null, @@ -301592,7 +301592,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelCategoryCount", "ApiReferenceLink": null, @@ -301635,7 +301635,7 @@ "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelCategorySubcategoryCount", "ApiReferenceLink": null, @@ -301679,7 +301679,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelCitationCount", "ApiReferenceLink": null, @@ -301722,7 +301722,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelDepartmentCount", "ApiReferenceLink": null, @@ -301765,7 +301765,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelFilePlanReferenceCount", "ApiReferenceLink": null, @@ -301857,7 +301857,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelCount", "ApiReferenceLink": null, @@ -302007,7 +302007,7 @@ "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDispositionReviewStageCount", "ApiReferenceLink": null, @@ -302148,7 +302148,7 @@ "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySecureScoreControlProfileCount", "ApiReferenceLink": null, @@ -302179,7 +302179,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySecureScoreCount", "ApiReferenceLink": null, @@ -302302,7 +302302,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApproverCount", "ApiReferenceLink": null, @@ -302346,7 +302346,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -302390,7 +302390,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaboratorCount", "ApiReferenceLink": null, @@ -302434,7 +302434,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -302449,7 +302449,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCount", "ApiReferenceLink": null, @@ -302480,7 +302480,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestFinalAttachment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0", @@ -302512,7 +302512,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestFinalReport", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-1.0", @@ -302573,7 +302573,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestNoteCount", "ApiReferenceLink": null, @@ -302663,7 +302663,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleCount", "ApiReferenceLink": null, @@ -302724,7 +302724,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleIndicatorCount", "ApiReferenceLink": null, @@ -302798,7 +302798,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostChildHostPairCount", "ApiReferenceLink": null, @@ -302845,7 +302845,7 @@ "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostComponentCount", "ApiReferenceLink": null, @@ -302908,7 +302908,7 @@ "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCookieCount", "ApiReferenceLink": null, @@ -302939,7 +302939,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCount", "ApiReferenceLink": null, @@ -303000,7 +303000,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPairCount", "ApiReferenceLink": null, @@ -303060,7 +303060,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostParentHostPairCount", "ApiReferenceLink": null, @@ -303104,7 +303104,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDnsCount", "ApiReferenceLink": null, @@ -303148,7 +303148,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDnsReverseCount", "ApiReferenceLink": null, @@ -303195,7 +303195,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPortCount", "ApiReferenceLink": null, @@ -303290,7 +303290,7 @@ "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSslCertificateCount", "ApiReferenceLink": null, @@ -303350,7 +303350,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSubdomainCount", "ApiReferenceLink": null, @@ -303397,7 +303397,7 @@ "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostTrackerCount", "ApiReferenceLink": null, @@ -303472,7 +303472,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfileCount", "ApiReferenceLink": null, @@ -303515,7 +303515,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfileIndicatorCount", "ApiReferenceLink": null, @@ -303574,7 +303574,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecordCount", "ApiReferenceLink": null, @@ -303647,7 +303647,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceProfileIndicatorCount", "ApiReferenceLink": null, @@ -303690,7 +303690,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificateCount", "ApiReferenceLink": null, @@ -303733,7 +303733,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificateRelatedHostCount", "ApiReferenceLink": null, @@ -303777,7 +303777,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSubdomainCount", "ApiReferenceLink": null, @@ -303864,7 +303864,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityArticleCount", "ApiReferenceLink": null, @@ -303908,7 +303908,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityComponentCount", "ApiReferenceLink": null, @@ -303923,7 +303923,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityCount", "ApiReferenceLink": null, @@ -303966,7 +303966,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisHistoryRecordCount", "ApiReferenceLink": null, @@ -304024,7 +304024,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordCount", "ApiReferenceLink": null, @@ -304067,7 +304067,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordHistoryCount", "ApiReferenceLink": null, @@ -304174,7 +304174,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityTriggerRetentionEventCount", "ApiReferenceLink": null, @@ -304314,7 +304314,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityTriggerTypeRetentionEventTypeCount", "ApiReferenceLink": null, @@ -304374,7 +304374,7 @@ "OutputType": "IMicrosoftGraphServiceHealth" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverviewCount", "ApiReferenceLink": null, @@ -304417,7 +304417,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverviewIssueCount", "ApiReferenceLink": null, @@ -304461,7 +304461,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementIssueCount", "ApiReferenceLink": null, @@ -304533,7 +304533,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachmentArchive", "ApiReferenceLink": null, @@ -304548,7 +304548,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachmentContent", "ApiReferenceLink": null, @@ -304563,7 +304563,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachmentCount", "ApiReferenceLink": null, @@ -304578,7 +304578,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageCount", "ApiReferenceLink": null, @@ -304732,7 +304732,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalAppManagementPolicyCount", "ApiReferenceLink": null, @@ -304817,7 +304817,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalAppRoleAssignedToCount", "ApiReferenceLink": null, @@ -304943,7 +304943,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalAppRoleAssignmentCount", "ApiReferenceLink": null, @@ -305055,7 +305055,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgServicePrincipalById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -305125,7 +305125,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalClaimMappingPolicyByRef", "ApiReferenceLink": null, @@ -305180,7 +305180,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalClaimMappingPolicyCount", "ApiReferenceLink": null, @@ -305236,7 +305236,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalCount", "ApiReferenceLink": null, @@ -305390,7 +305390,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObjectCount", "ApiReferenceLink": null, @@ -305446,7 +305446,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal", "ApiReferenceLink": null, @@ -305515,7 +305515,7 @@ "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalDelegatedPermissionClassificationCount", "ApiReferenceLink": null, @@ -305639,7 +305639,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalEndpointCount", "ApiReferenceLink": null, @@ -305709,7 +305709,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "ApiReferenceLink": null, @@ -305764,7 +305764,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount", "ApiReferenceLink": null, @@ -305820,7 +305820,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgServicePrincipalMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -305918,7 +305918,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgServicePrincipalMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -306189,7 +306189,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfCount", "ApiReferenceLink": null, @@ -306245,7 +306245,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -306260,7 +306260,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfCountAsDirectoryRole", "ApiReferenceLink": null, @@ -306275,7 +306275,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -306344,7 +306344,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOauth2PermissionGrantCount", "ApiReferenceLink": null, @@ -306599,7 +306599,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCount", "ApiReferenceLink": null, @@ -306655,7 +306655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsApplication", "ApiReferenceLink": null, @@ -306670,7 +306670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment", "ApiReferenceLink": null, @@ -306685,7 +306685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsEndpoint", "ApiReferenceLink": null, @@ -306700,7 +306700,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsGroup", "ApiReferenceLink": null, @@ -306715,7 +306715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal", "ApiReferenceLink": null, @@ -306901,7 +306901,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerByRef", "ApiReferenceLink": null, @@ -306956,7 +306956,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerCount", "ApiReferenceLink": null, @@ -307012,7 +307012,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerCountAsAppRoleAssignment", "ApiReferenceLink": null, @@ -307027,7 +307027,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerCountAsEndpoint", "ApiReferenceLink": null, @@ -307042,7 +307042,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerCountAsServicePrincipal", "ApiReferenceLink": null, @@ -307057,7 +307057,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerCountAsUser", "ApiReferenceLink": null, @@ -307116,7 +307116,7 @@ "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount", "ApiReferenceLink": null, @@ -307160,7 +307160,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalRiskDetectionCount", "ApiReferenceLink": null, @@ -307189,7 +307189,7 @@ "OutputType": "IMicrosoftGraphSynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgServicePrincipalSynchronizationAccessToken", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0", @@ -307317,7 +307317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobBulkUploadContent", "ApiReferenceLink": null, @@ -307332,7 +307332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobCount", "ApiReferenceLink": null, @@ -307457,7 +307457,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount", "ApiReferenceLink": null, @@ -307472,7 +307472,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationSecretCount", "ApiReferenceLink": null, @@ -307566,7 +307566,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplateCount", "ApiReferenceLink": null, @@ -307675,7 +307675,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount", "ApiReferenceLink": null, @@ -307719,7 +307719,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTokenIssuancePolicyCount", "ApiReferenceLink": null, @@ -307804,7 +307804,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTokenLifetimePolicyCount", "ApiReferenceLink": null, @@ -308009,7 +308009,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -308057,7 +308057,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -308072,7 +308072,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole", "ApiReferenceLink": null, @@ -308087,7 +308087,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -308146,7 +308146,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -308161,7 +308161,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareCount", "ApiReferenceLink": null, @@ -308219,7 +308219,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -308274,7 +308274,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareDriveItemContent", "ApiReferenceLink": null, @@ -308367,7 +308367,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareItemContent", "ApiReferenceLink": null, @@ -308382,7 +308382,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareItemCount", "ApiReferenceLink": null, @@ -308446,7 +308446,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -308512,7 +308512,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -308573,7 +308573,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListColumnCount", "ApiReferenceLink": null, @@ -308661,7 +308661,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumnCount", "ApiReferenceLink": null, @@ -308705,7 +308705,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -308749,7 +308749,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -308794,7 +308794,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeCount", "ApiReferenceLink": null, @@ -308853,7 +308853,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -309001,7 +309001,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -309067,7 +309067,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -309118,7 +309118,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemDriveItemContent", "ApiReferenceLink": null, @@ -309184,7 +309184,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemVersionCount", "ApiReferenceLink": null, @@ -309247,7 +309247,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListOperationCount", "ApiReferenceLink": null, @@ -309291,7 +309291,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListSubscriptionCount", "ApiReferenceLink": null, @@ -309336,7 +309336,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareRootContent", "ApiReferenceLink": null, @@ -309622,7 +309622,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivityCount", "ApiReferenceLink": null, @@ -309652,7 +309652,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivityDriveItemContent", "ApiReferenceLink": null, @@ -309667,7 +309667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -309858,7 +309858,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteByPath", "ApiReferenceLink": null, @@ -309968,7 +309968,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteColumnCount", "ApiReferenceLink": null, @@ -310175,7 +310175,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -310287,7 +310287,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumnCount", "ApiReferenceLink": null, @@ -310364,7 +310364,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -310408,7 +310408,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -310470,7 +310470,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeCount", "ApiReferenceLink": null, @@ -310518,7 +310518,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteCount", "ApiReferenceLink": null, @@ -310722,7 +310722,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteDriveCount", "ApiReferenceLink": null, @@ -310815,7 +310815,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteExternalColumnCount", "ApiReferenceLink": null, @@ -311093,7 +311093,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetGraphBPrePathByPath", "ApiReferenceLink": null, @@ -311152,7 +311152,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -311211,7 +311211,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -311384,7 +311384,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListColumnCount", "ApiReferenceLink": null, @@ -311637,7 +311637,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnCount", "ApiReferenceLink": null, @@ -311714,7 +311714,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -311758,7 +311758,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -311820,7 +311820,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeCount", "ApiReferenceLink": null, @@ -311868,7 +311868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListCount", "ApiReferenceLink": null, @@ -311944,7 +311944,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -312170,7 +312170,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -312330,7 +312330,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -312465,7 +312465,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemDriveItemContent", "ApiReferenceLink": null, @@ -312558,7 +312558,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemVersionCount", "ApiReferenceLink": null, @@ -312700,7 +312700,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListOperationCount", "ApiReferenceLink": null, @@ -312777,7 +312777,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListSubscriptionCount", "ApiReferenceLink": null, @@ -312903,7 +312903,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteNotebookCount", "ApiReferenceLink": null, @@ -312959,7 +312959,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgSiteOnenoteNotebookFromWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0", @@ -313183,7 +313183,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteOperationCount", "ApiReferenceLink": null, @@ -313293,7 +313293,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenotePageContent", "ApiReferenceLink": null, @@ -313308,7 +313308,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenotePageCount", "ApiReferenceLink": null, @@ -313371,7 +313371,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteResourceContent", "ApiReferenceLink": null, @@ -313419,7 +313419,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteResourceCount", "ApiReferenceLink": null, @@ -313545,7 +313545,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteSectionCount", "ApiReferenceLink": null, @@ -313713,7 +313713,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteSectionGroupCount", "ApiReferenceLink": null, @@ -313968,7 +313968,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOperationCount", "ApiReferenceLink": null, @@ -314198,7 +314198,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount", "ApiReferenceLink": null, @@ -314242,7 +314242,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount", "ApiReferenceLink": null, @@ -314257,7 +314257,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionCount", "ApiReferenceLink": null, @@ -314316,7 +314316,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount", "ApiReferenceLink": null, @@ -314375,7 +314375,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -314434,7 +314434,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -314478,7 +314478,7 @@ "OutputType": "IMicrosoftGraphWebPart" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageWebPartCount", "ApiReferenceLink": null, @@ -314493,7 +314493,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageCount", "ApiReferenceLink": null, @@ -314525,7 +314525,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageCountAsSitePage", "ApiReferenceLink": null, @@ -314601,7 +314601,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -314660,7 +314660,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -314675,7 +314675,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", "ApiReferenceLink": null, @@ -314690,7 +314690,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", "ApiReferenceLink": null, @@ -314705,7 +314705,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", "ApiReferenceLink": null, @@ -314749,7 +314749,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePermissionCount", "ApiReferenceLink": null, @@ -314764,7 +314764,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteRecentNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0", @@ -314868,7 +314868,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreCount", "ApiReferenceLink": null, @@ -314949,7 +314949,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupCount", "ApiReferenceLink": null, @@ -315070,7 +315070,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildCount", "ApiReferenceLink": null, @@ -315129,7 +315129,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelationCount", "ApiReferenceLink": null, @@ -315234,7 +315234,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetCount", "ApiReferenceLink": null, @@ -315317,7 +315317,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelationCount", "ApiReferenceLink": null, @@ -315466,7 +315466,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildCount", "ApiReferenceLink": null, @@ -315515,7 +315515,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelationCount", "ApiReferenceLink": null, @@ -315600,7 +315600,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermCount", "ApiReferenceLink": null, @@ -315649,7 +315649,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelationCount", "ApiReferenceLink": null, @@ -315838,7 +315838,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildCount", "ApiReferenceLink": null, @@ -315897,7 +315897,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelationCount", "ApiReferenceLink": null, @@ -316002,7 +316002,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetCount", "ApiReferenceLink": null, @@ -316106,7 +316106,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildCount", "ApiReferenceLink": null, @@ -316165,7 +316165,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelationCount", "ApiReferenceLink": null, @@ -316270,7 +316270,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetCount", "ApiReferenceLink": null, @@ -316319,7 +316319,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelationCount", "ApiReferenceLink": null, @@ -316451,7 +316451,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildCount", "ApiReferenceLink": null, @@ -316500,7 +316500,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelationCount", "ApiReferenceLink": null, @@ -316585,7 +316585,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermCount", "ApiReferenceLink": null, @@ -316634,7 +316634,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelationCount", "ApiReferenceLink": null, @@ -316768,7 +316768,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelationCount", "ApiReferenceLink": null, @@ -316951,7 +316951,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildCount", "ApiReferenceLink": null, @@ -317017,7 +317017,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelationCount", "ApiReferenceLink": null, @@ -317102,7 +317102,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermCount", "ApiReferenceLink": null, @@ -317168,7 +317168,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelationCount", "ApiReferenceLink": null, @@ -317440,7 +317440,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSubSiteCount", "ApiReferenceLink": null, @@ -317774,7 +317774,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelCount", "ApiReferenceLink": null, @@ -317950,7 +317950,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -318052,7 +318052,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMemberCount", "ApiReferenceLink": null, @@ -318189,7 +318189,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageCount", "ApiReferenceLink": null, @@ -318382,7 +318382,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -318525,7 +318525,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageReplyCount", "ApiReferenceLink": null, @@ -318718,7 +318718,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -318877,7 +318877,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -318909,7 +318909,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -319164,7 +319164,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelTabCount", "ApiReferenceLink": null, @@ -319291,7 +319291,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamCount", "ApiReferenceLink": null, @@ -319344,7 +319344,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamGroupServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -319413,7 +319413,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamIncomingChannelCount", "ApiReferenceLink": null, @@ -319764,7 +319764,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamInstalledAppCount", "ApiReferenceLink": null, @@ -320025,7 +320025,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamMemberCount", "ApiReferenceLink": null, @@ -320094,7 +320094,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamOperationCount", "ApiReferenceLink": null, @@ -320219,7 +320219,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPermissionGrantCount", "ApiReferenceLink": null, @@ -320330,7 +320330,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPhotoContent", "ApiReferenceLink": null, @@ -320416,7 +320416,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelFileFolderContent", "ApiReferenceLink": null, @@ -320460,7 +320460,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMemberCount", "ApiReferenceLink": null, @@ -320504,7 +320504,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageCount", "ApiReferenceLink": null, @@ -320565,7 +320565,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -320609,7 +320609,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyCount", "ApiReferenceLink": null, @@ -320670,7 +320670,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -320745,7 +320745,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -320760,7 +320760,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -320804,7 +320804,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelTabCount", "ApiReferenceLink": null, @@ -320961,7 +320961,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleOfferShiftRequestCount", "ApiReferenceLink": null, @@ -321183,7 +321183,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleOpenShiftChangeRequestCount", "ApiReferenceLink": null, @@ -321231,7 +321231,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleOpenShiftCount", "ApiReferenceLink": null, @@ -321374,7 +321374,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleSchedulingGroupCount", "ApiReferenceLink": null, @@ -321517,7 +321517,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleShiftCount", "ApiReferenceLink": null, @@ -321627,7 +321627,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleSwapShiftChangeRequestCount", "ApiReferenceLink": null, @@ -321770,7 +321770,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleTimeOffCount", "ApiReferenceLink": null, @@ -321913,7 +321913,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleTimeOffReasonCount", "ApiReferenceLink": null, @@ -322056,7 +322056,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleTimeOffRequestCount", "ApiReferenceLink": null, @@ -322199,7 +322199,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamTagCount", "ApiReferenceLink": null, @@ -322342,7 +322342,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamTagMemberCount", "ApiReferenceLink": null, @@ -322448,7 +322448,7 @@ "OutputType": "IMicrosoftGraphDeletedChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedChatCount", "ApiReferenceLink": null, @@ -322520,7 +322520,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelCount", "ApiReferenceLink": null, @@ -322550,7 +322550,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -322594,7 +322594,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMemberCount", "ApiReferenceLink": null, @@ -322640,7 +322640,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageCount", "ApiReferenceLink": null, @@ -322701,7 +322701,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageHostedContentCount", "ApiReferenceLink": null, @@ -322745,7 +322745,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyCount", "ApiReferenceLink": null, @@ -322806,7 +322806,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -322881,7 +322881,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount", "ApiReferenceLink": null, @@ -322896,7 +322896,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeamCount", "ApiReferenceLink": null, @@ -322940,7 +322940,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelTabCount", "ApiReferenceLink": null, @@ -322970,7 +322970,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamCount", "ApiReferenceLink": null, @@ -323078,7 +323078,7 @@ "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkWorkforceIntegrationCount", "ApiReferenceLink": null, @@ -323172,7 +323172,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminCustomerCount", "ApiReferenceLink": null, @@ -323249,7 +323249,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount", "ApiReferenceLink": null, @@ -323407,7 +323407,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount", "ApiReferenceLink": null, @@ -323439,7 +323439,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipCount", "ApiReferenceLink": null, @@ -323533,7 +323533,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipOperationCount", "ApiReferenceLink": null, @@ -323628,7 +323628,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipRequestCount", "ApiReferenceLink": null, @@ -323784,7 +323784,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipMultiTenantOrganizationTenantCount", "ApiReferenceLink": null, @@ -324107,7 +324107,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserActivityCount", "ApiReferenceLink": null, @@ -324166,7 +324166,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserActivityHistoryItemCount", "ApiReferenceLink": null, @@ -324227,7 +324227,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAgreementAcceptanceCount", "ApiReferenceLink": null, @@ -324305,7 +324305,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAppRoleAssignmentCount", "ApiReferenceLink": null, @@ -324432,7 +324432,7 @@ "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationEmailMethodCount", "ApiReferenceLink": null, @@ -324575,7 +324575,7 @@ "OutputType": "IMicrosoftGraphFido2AuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationFido2MethodCount", "ApiReferenceLink": null, @@ -324718,7 +324718,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationMethodCount", "ApiReferenceLink": null, @@ -324861,7 +324861,7 @@ "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethodCount", "ApiReferenceLink": null, @@ -324986,7 +324986,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationOperationCount", "ApiReferenceLink": null, @@ -325096,7 +325096,7 @@ "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationPasswordMethodCount", "ApiReferenceLink": null, @@ -325239,7 +325239,7 @@ "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationPhoneMethodCount", "ApiReferenceLink": null, @@ -325382,7 +325382,7 @@ "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationSoftwareOathMethodCount", "ApiReferenceLink": null, @@ -325525,7 +325525,7 @@ "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethodCount", "ApiReferenceLink": null, @@ -325668,7 +325668,7 @@ "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationWindowsHelloForBusinessMethodCount", "ApiReferenceLink": null, @@ -325731,7 +325731,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgUserById", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", @@ -325808,7 +325808,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCalendarCount", "ApiReferenceLink": null, @@ -326055,7 +326055,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCalendarGroupCount", "ApiReferenceLink": null, @@ -326127,7 +326127,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCalendarPermissionCount", "ApiReferenceLink": null, @@ -326144,7 +326144,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgUserCalendarSchedule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0", @@ -326352,7 +326352,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatCount", "ApiReferenceLink": null, @@ -326437,7 +326437,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatInstalledAppCount", "ApiReferenceLink": null, @@ -326720,7 +326720,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMemberCount", "ApiReferenceLink": null, @@ -326959,7 +326959,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageCount", "ApiReferenceLink": null, @@ -327232,7 +327232,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageHostedContentCount", "ApiReferenceLink": null, @@ -327333,7 +327333,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageReplyCount", "ApiReferenceLink": null, @@ -327394,7 +327394,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageReplyHostedContentCount", "ApiReferenceLink": null, @@ -327438,7 +327438,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatPermissionGrantCount", "ApiReferenceLink": null, @@ -327484,7 +327484,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatPinnedMessageCount", "ApiReferenceLink": null, @@ -327528,7 +327528,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatTabCount", "ApiReferenceLink": null, @@ -327621,7 +327621,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactCount", "ApiReferenceLink": null, @@ -327714,7 +327714,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactExtensionCount", "ApiReferenceLink": null, @@ -327901,7 +327901,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactCount", "ApiReferenceLink": null, @@ -327994,7 +327994,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactExtensionCount", "ApiReferenceLink": null, @@ -328024,7 +328024,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactPhotoContent", "ApiReferenceLink": null, @@ -328039,7 +328039,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderCount", "ApiReferenceLink": null, @@ -328149,7 +328149,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderContactCount", "ApiReferenceLink": null, @@ -328242,7 +328242,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderContactExtensionCount", "ApiReferenceLink": null, @@ -328272,7 +328272,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderContactPhotoContent", "ApiReferenceLink": null, @@ -328287,7 +328287,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderCount", "ApiReferenceLink": null, @@ -328366,7 +328366,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactPhotoContent", "ApiReferenceLink": null, @@ -328381,7 +328381,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCount", "ApiReferenceLink": null, @@ -328607,7 +328607,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCreatedObjectCount", "ApiReferenceLink": null, @@ -328671,7 +328671,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCreatedObjectCountAsServicePrincipal", "ApiReferenceLink": null, @@ -328740,7 +328740,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgUserDefaultCalendarSchedule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0", @@ -328922,7 +328922,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDeviceManagementTroubleshootingEventCount", "ApiReferenceLink": null, @@ -329065,7 +329065,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDirectReportCount", "ApiReferenceLink": null, @@ -329121,7 +329121,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDirectReportCountAsOrgContact", "ApiReferenceLink": null, @@ -329136,7 +329136,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDirectReportCountAsUser", "ApiReferenceLink": null, @@ -329258,7 +329258,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveBundleContent", "ApiReferenceLink": null, @@ -329273,7 +329273,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveBundleCount", "ApiReferenceLink": null, @@ -329332,7 +329332,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveContentTypeBaseTypeCount", "ApiReferenceLink": null, @@ -329347,7 +329347,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveCount", "ApiReferenceLink": null, @@ -329455,7 +329455,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -329499,7 +329499,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveFollowingContent", "ApiReferenceLink": null, @@ -329514,7 +329514,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveFollowingCount", "ApiReferenceLink": null, @@ -329633,7 +329633,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -329707,7 +329707,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemChildContent", "ApiReferenceLink": null, @@ -329722,7 +329722,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemChildCount", "ApiReferenceLink": null, @@ -329737,7 +329737,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemContent", "ApiReferenceLink": null, @@ -329752,7 +329752,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemCount", "ApiReferenceLink": null, @@ -329811,7 +329811,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -329887,7 +329887,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -329951,7 +329951,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -330059,7 +330059,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -330103,7 +330103,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -330148,7 +330148,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -330207,7 +330207,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemVersionCount", "ApiReferenceLink": null, @@ -330266,7 +330266,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemPermissionCount", "ApiReferenceLink": null, @@ -330325,7 +330325,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemSubscriptionCount", "ApiReferenceLink": null, @@ -330369,7 +330369,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemThumbnailCount", "ApiReferenceLink": null, @@ -330413,7 +330413,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemVersionContent", "ApiReferenceLink": null, @@ -330428,7 +330428,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemVersionCount", "ApiReferenceLink": null, @@ -330492,7 +330492,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -330553,7 +330553,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListColumnCount", "ApiReferenceLink": null, @@ -330641,7 +330641,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnCount", "ApiReferenceLink": null, @@ -330685,7 +330685,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnLinkCount", "ApiReferenceLink": null, @@ -330729,7 +330729,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnPositionCount", "ApiReferenceLink": null, @@ -330774,7 +330774,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeCount", "ApiReferenceLink": null, @@ -330833,7 +330833,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -330968,7 +330968,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -331029,7 +331029,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -331074,7 +331074,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -331133,7 +331133,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemVersionCount", "ApiReferenceLink": null, @@ -331192,7 +331192,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListOperationCount", "ApiReferenceLink": null, @@ -331236,7 +331236,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListSubscriptionCount", "ApiReferenceLink": null, @@ -331341,7 +331341,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticItemActivityStatCount", "ApiReferenceLink": null, @@ -331415,7 +331415,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootChildContent", "ApiReferenceLink": null, @@ -331430,7 +331430,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootChildCount", "ApiReferenceLink": null, @@ -331445,7 +331445,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootContent", "ApiReferenceLink": null, @@ -331504,7 +331504,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -331580,7 +331580,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -331639,7 +331639,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootLastModifiedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -331745,7 +331745,7 @@ "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemCreatedByUserServiceProvisioningErrorCount", "ApiReferenceLink": null, @@ -331789,7 +331789,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemDocumentSetVersionCount", "ApiReferenceLink": null, @@ -331834,7 +331834,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -331893,7 +331893,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemVersionCount", "ApiReferenceLink": null, @@ -331952,7 +331952,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootPermissionCount", "ApiReferenceLink": null, @@ -332011,7 +332011,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootSubscriptionCount", "ApiReferenceLink": null, @@ -332055,7 +332055,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootThumbnailCount", "ApiReferenceLink": null, @@ -332099,7 +332099,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootVersionContent", "ApiReferenceLink": null, @@ -332114,7 +332114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootVersionCount", "ApiReferenceLink": null, @@ -332158,7 +332158,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveSpecialContent", "ApiReferenceLink": null, @@ -332173,7 +332173,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveSpecialCount", "ApiReferenceLink": null, @@ -332288,7 +332288,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventAttachmentCount", "ApiReferenceLink": null, @@ -332318,7 +332318,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventCount", "ApiReferenceLink": null, @@ -332427,7 +332427,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventExtensionCount", "ApiReferenceLink": null, @@ -332517,7 +332517,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventInstanceAttachmentCount", "ApiReferenceLink": null, @@ -332547,7 +332547,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventInstanceCount", "ApiReferenceLink": null, @@ -332623,7 +332623,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventInstanceExtensionCount", "ApiReferenceLink": null, @@ -332667,7 +332667,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserExtensionCount", "ApiReferenceLink": null, @@ -332728,7 +332728,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserFollowedSiteCount", "ApiReferenceLink": null, @@ -332804,7 +332804,7 @@ "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserInferenceClassificationOverrideCount", "ApiReferenceLink": null, @@ -332975,7 +332975,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserLicenseDetailCount", "ApiReferenceLink": null, @@ -333031,7 +333031,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserLicenseDetailTeamLicensingDetail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-1.0", @@ -333268,7 +333268,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderCount", "ApiReferenceLink": null, @@ -333389,7 +333389,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageAttachmentCount", "ApiReferenceLink": null, @@ -333404,7 +333404,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageContent", "ApiReferenceLink": null, @@ -333419,7 +333419,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageCount", "ApiReferenceLink": null, @@ -333478,7 +333478,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageExtensionCount", "ApiReferenceLink": null, @@ -333522,7 +333522,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageRuleCount", "ApiReferenceLink": null, @@ -333537,7 +333537,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderCount", "ApiReferenceLink": null, @@ -333749,7 +333749,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageAttachmentCount", "ApiReferenceLink": null, @@ -333764,7 +333764,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageContent", "ApiReferenceLink": null, @@ -333804,7 +333804,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageCount", "ApiReferenceLink": null, @@ -333929,7 +333929,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageExtensionCount", "ApiReferenceLink": null, @@ -333973,7 +333973,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageRuleCount", "ApiReferenceLink": null, @@ -333988,7 +333988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgUserMailTip", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-getmailtips?view=graph-rest-1.0", @@ -334022,7 +334022,7 @@ "OutputType": "IMicrosoftGraphMailTips" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedAppDiagnosticStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-getmanagedappdiagnosticstatuses?view=graph-rest-1.0", @@ -334115,7 +334115,7 @@ "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedAppRegistrationCount", "ApiReferenceLink": null, @@ -334203,7 +334203,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceCompliancePolicyStateCount", "ApiReferenceLink": null, @@ -334247,7 +334247,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceConfigurationStateCount", "ApiReferenceLink": null, @@ -334262,7 +334262,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceCount", "ApiReferenceLink": null, @@ -334277,7 +334277,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceLogCollectionRequestCount", "ApiReferenceLink": null, @@ -334379,7 +334379,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount", "ApiReferenceLink": null, @@ -334394,7 +334394,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceWithAppFailure", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-troubleshooting-user-getmanageddeviceswithappfailures?view=graph-rest-1.0", @@ -334474,7 +334474,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagerByRef", "ApiReferenceLink": null, @@ -334522,7 +334522,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgUserMemberGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", @@ -334620,7 +334620,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgUserMemberObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", @@ -334951,7 +334951,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfCount", "ApiReferenceLink": null, @@ -334999,7 +334999,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -335031,7 +335031,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfCountAsDirectoryRole", "ApiReferenceLink": null, @@ -335063,7 +335063,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -335211,7 +335211,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessageAttachmentCount", "ApiReferenceLink": null, @@ -335226,7 +335226,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessageContent", "ApiReferenceLink": null, @@ -335266,7 +335266,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessageCount", "ApiReferenceLink": null, @@ -335383,7 +335383,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessageExtensionCount", "ApiReferenceLink": null, @@ -335444,7 +335444,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOauth2PermissionGrantCount", "ApiReferenceLink": null, @@ -335587,7 +335587,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteNotebookCount", "ApiReferenceLink": null, @@ -335643,7 +335643,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Get-MgUserOnenoteNotebookFromWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0", @@ -335867,7 +335867,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteOperationCount", "ApiReferenceLink": null, @@ -335977,7 +335977,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenotePageContent", "ApiReferenceLink": null, @@ -336025,7 +336025,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenotePageCount", "ApiReferenceLink": null, @@ -336073,7 +336073,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteRecentNotebook", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0", @@ -336144,7 +336144,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteResourceContent", "ApiReferenceLink": null, @@ -336192,7 +336192,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteResourceCount", "ApiReferenceLink": null, @@ -336318,7 +336318,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteSectionCount", "ApiReferenceLink": null, @@ -336486,7 +336486,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteSectionGroupCount", "ApiReferenceLink": null, @@ -336799,7 +336799,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount", "ApiReferenceLink": null, @@ -336814,7 +336814,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReportCount", "ApiReferenceLink": null, @@ -336829,7 +336829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendeeReport", "ApiReferenceLink": null, @@ -336844,7 +336844,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingCount", "ApiReferenceLink": null, @@ -336921,7 +336921,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingRecordingContent", "ApiReferenceLink": null, @@ -336936,7 +336936,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingRecordingCount", "ApiReferenceLink": null, @@ -336980,7 +336980,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscriptContent", "ApiReferenceLink": null, @@ -336995,7 +336995,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscriptCount", "ApiReferenceLink": null, @@ -337010,7 +337010,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscriptMetadataContent", "ApiReferenceLink": null, @@ -337025,7 +337025,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0", @@ -337118,7 +337118,7 @@ "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOutlookMasterCategoryCount", "ApiReferenceLink": null, @@ -337290,7 +337290,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceCount", "ApiReferenceLink": null, @@ -337346,7 +337346,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceCountAsAppRoleAssignment", "ApiReferenceLink": null, @@ -337361,7 +337361,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceCountAsDevice", "ApiReferenceLink": null, @@ -337376,7 +337376,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceCountAsEndpoint", "ApiReferenceLink": null, @@ -337548,7 +337548,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectCount", "ApiReferenceLink": null, @@ -337604,7 +337604,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectCountAsApplication", "ApiReferenceLink": null, @@ -337619,7 +337619,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectCountAsGroup", "ApiReferenceLink": null, @@ -337634,7 +337634,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectCountAsServicePrincipal", "ApiReferenceLink": null, @@ -337695,7 +337695,7 @@ "OutputType": "IMicrosoftGraphPerson" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserPersonCount", "ApiReferenceLink": null, @@ -337840,7 +337840,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserPhotoContent", "ApiReferenceLink": null, @@ -338261,7 +338261,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceCount", "ApiReferenceLink": null, @@ -338317,7 +338317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceCountAsAppRoleAssignment", "ApiReferenceLink": null, @@ -338332,7 +338332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceCountAsDevice", "ApiReferenceLink": null, @@ -338347,7 +338347,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceCountAsEndpoint", "ApiReferenceLink": null, @@ -338408,7 +338408,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserScopedRoleMemberOfCount", "ApiReferenceLink": null, @@ -338549,7 +338549,7 @@ "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSettingWindowsCount", "ApiReferenceLink": null, @@ -338593,7 +338593,7 @@ "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSettingWindowsInstanceCount", "ApiReferenceLink": null, @@ -338608,7 +338608,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSharedCountInsight", "ApiReferenceLink": null, @@ -338755,7 +338755,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSponsorCount", "ApiReferenceLink": null, @@ -338883,7 +338883,7 @@ "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamworkAssociatedTeamCount", "ApiReferenceLink": null, @@ -339258,7 +339258,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamworkInstalledAppCount", "ApiReferenceLink": null, @@ -339511,7 +339511,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoListCount", "ApiReferenceLink": null, @@ -339628,7 +339628,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoListExtensionCount", "ApiReferenceLink": null, @@ -339833,7 +339833,7 @@ "OutputType": "IMicrosoftGraphAttachmentBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskAttachmentContent", "ApiReferenceLink": null, @@ -339881,7 +339881,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskAttachmentCount", "ApiReferenceLink": null, @@ -339958,7 +339958,7 @@ "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskAttachmentSessionContent", "ApiReferenceLink": null, @@ -339973,7 +339973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskAttachmentSessionCount", "ApiReferenceLink": null, @@ -340083,7 +340083,7 @@ "OutputType": "IMicrosoftGraphChecklistItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskChecklistItemCount", "ApiReferenceLink": null, @@ -340131,7 +340131,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskCount", "ApiReferenceLink": null, @@ -340256,7 +340256,7 @@ "OutputType": "IMicrosoftGraphExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskExtensionCount", "ApiReferenceLink": null, @@ -340366,7 +340366,7 @@ "OutputType": "IMicrosoftGraphLinkedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskLinkedResourceCount", "ApiReferenceLink": null, @@ -340579,7 +340579,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfCount", "ApiReferenceLink": null, @@ -340643,7 +340643,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfCountAsAdministrativeUnit", "ApiReferenceLink": null, @@ -340658,7 +340658,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfCountAsDirectoryRole", "ApiReferenceLink": null, @@ -340673,7 +340673,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfCountAsGroup", "ApiReferenceLink": null, @@ -340688,7 +340688,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTrendingCountInsight", "ApiReferenceLink": null, @@ -340798,7 +340798,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserUsedCountInsight", "ApiReferenceLink": null, @@ -340937,7 +340937,7 @@ "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventCount", "ApiReferenceLink": null, @@ -341038,7 +341038,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount", "ApiReferenceLink": null, @@ -341053,7 +341053,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReportCount", "ApiReferenceLink": null, @@ -341068,7 +341068,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventSessionCount", "ApiReferenceLink": null, @@ -341142,7 +341142,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarCount", "ApiReferenceLink": null, @@ -341185,7 +341185,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarRegistrationCount", "ApiReferenceLink": null, @@ -341287,7 +341287,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount", "ApiReferenceLink": null, @@ -341302,7 +341302,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReportCount", "ApiReferenceLink": null, @@ -341317,7 +341317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionCount", "ApiReferenceLink": null, @@ -341332,7 +341332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgBetaDriveItemPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", @@ -341349,7 +341349,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgBetaDriveRootPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", @@ -341366,7 +341366,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgBetaGroupDriveItemPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", @@ -341383,7 +341383,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgBetaGroupDriveRootPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", @@ -341400,7 +341400,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgBetaGroupSitePermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", @@ -341417,7 +341417,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgBetaSharePermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", @@ -341459,7 +341459,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgBetaSitePermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", @@ -341476,7 +341476,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgBetaUserDriveItemPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", @@ -341493,7 +341493,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgBetaUserDriveRootPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", @@ -341510,7 +341510,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgDriveItemPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", @@ -341527,7 +341527,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgDriveRootPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", @@ -341544,7 +341544,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgGroupDriveItemPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", @@ -341561,7 +341561,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgGroupDriveRootPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", @@ -341578,7 +341578,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgGroupSitePermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", @@ -341595,7 +341595,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgSharePermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", @@ -341637,7 +341637,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgSitePermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", @@ -341654,7 +341654,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgUserDriveItemPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", @@ -341671,7 +341671,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Grant-MgUserDriveRootPermission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", @@ -341688,7 +341688,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Hide-MgBetaChatForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-beta", @@ -341705,7 +341705,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Hide-MgBetaUserChatForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-beta", @@ -341722,7 +341722,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Hide-MgChatForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-1.0", @@ -341739,7 +341739,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Hide-MgUserChatForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-1.0", @@ -341756,7 +341756,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentityAppleDeviceIdentityList", "ApiReferenceLink": null, @@ -341773,7 +341773,7 @@ "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentityResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaDeviceManagementImportedDeviceIdentityList", "ApiReferenceLink": null, @@ -341788,7 +341788,7 @@ "OutputType": "IMicrosoftGraphImportedDeviceIdentityResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -341803,7 +341803,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaDeviceManagementTemplateMigratableToOffice365DeviceConfigurationPolicy", "ApiReferenceLink": null, @@ -341818,7 +341818,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaDeviceManagementTemplateOffice365DeviceConfigurationPolicy", "ApiReferenceLink": null, @@ -341832,7 +341832,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -341849,7 +341849,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -341866,7 +341866,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -341883,7 +341883,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -341900,7 +341900,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -341917,7 +341917,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -341934,7 +341934,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-importedwindowsautopilotdeviceidentity-import?view=graph-rest-1.0", @@ -341949,7 +341949,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaComplianceEdiscoveryCaseCustodian", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-activate?view=graph-rest-beta", @@ -341981,7 +341981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaDeviceManagementComanagedDeviceEsim", "ApiReferenceLink": null, @@ -342015,7 +342015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaDeviceManagementManagedDeviceEsim", "ApiReferenceLink": null, @@ -342049,7 +342049,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaEducationClassAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-beta", @@ -342081,7 +342081,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaEducationMeAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-beta", @@ -342096,7 +342096,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaEducationUserAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-beta", @@ -342111,7 +342111,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-beta", @@ -342128,7 +342128,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-beta", @@ -342145,7 +342145,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-activate?view=graph-rest-beta", @@ -342177,7 +342177,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgBetaUserManagedDeviceEsim", "ApiReferenceLink": null, @@ -342194,7 +342194,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgEducationClassAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-1.0", @@ -342226,7 +342226,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgEducationMeAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-1.0", @@ -342241,7 +342241,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgEducationUserAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-1.0", @@ -342256,7 +342256,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-1.0", @@ -342273,7 +342273,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-1.0", @@ -342290,7 +342290,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Initialize-MgSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-activate?view=graph-rest-1.0", @@ -342322,7 +342322,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAbortPrintPrinterJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-1.0", @@ -342364,7 +342364,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAbortPrintShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-1.0", @@ -342381,7 +342381,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAcceptGroupCalendarEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0", @@ -342398,7 +342398,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAcceptGroupCalendarEventTentatively", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0", @@ -342415,7 +342415,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAcceptGroupEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0", @@ -342432,7 +342432,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAcceptGroupEventTentatively", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0", @@ -342449,7 +342449,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-1.0", @@ -342464,7 +342464,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAcceptUserEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0", @@ -342481,7 +342481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAcceptUserEventInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0", @@ -342498,7 +342498,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAcceptUserEventInstanceTentatively", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0", @@ -342515,7 +342515,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAcceptUserEventTentatively", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0", @@ -342532,7 +342532,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgAnswerCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-1.0", @@ -342566,7 +342566,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgArchiveServiceAnnouncementMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-archive?view=graph-rest-1.0", @@ -342581,7 +342581,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgArchiveTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-archive?view=graph-rest-1.0", @@ -342663,7 +342663,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgAvailableDirectoryFederationConfigurationProviderType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-1.0", @@ -342694,7 +342694,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgAvailableIdentityProviderType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-1.0", @@ -342725,7 +342725,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-1.0", @@ -342742,7 +342742,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-beginonboarding?view=graph-rest-1.0", @@ -342774,7 +342774,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAbortPrintPrinterJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-beta", @@ -342816,7 +342816,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAbortPrintPrinterShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-beta", @@ -342833,7 +342833,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAbortPrintShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-beta", @@ -342850,7 +342850,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptGroupCalendarEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta", @@ -342867,7 +342867,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptGroupCalendarEventTentatively", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta", @@ -342884,7 +342884,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptGroupEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta", @@ -342901,7 +342901,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptGroupEventTentatively", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta", @@ -342918,7 +342918,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptIdentityGovernanceAccessReviewDecisionInstanceRecommendation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta", @@ -342933,7 +342933,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta", @@ -342948,7 +342948,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptUserEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta", @@ -342965,7 +342965,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptUserEventInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta", @@ -342982,7 +342982,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptUserEventInstanceTentatively", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta", @@ -342999,7 +342999,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptUserEventTentatively", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta", @@ -343016,7 +343016,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAcceptUserPendingAccessReviewInstanceRecommendation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta", @@ -343031,7 +343031,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAccountDeviceManagementWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -343046,7 +343046,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAllowDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceNextEnrollment", "ApiReferenceLink": null, @@ -343061,7 +343061,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAllowDeviceManagementWindowsAutopilotDeviceIdentityNextEnrollment", "ApiReferenceLink": null, @@ -343076,7 +343076,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaAnswerCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-beta", @@ -343110,7 +343110,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAppDeviceManagementComanagedDeviceDiagnostic", "ApiReferenceLink": null, @@ -343142,7 +343142,7 @@ "OutputType": "IMicrosoftGraphPowerliftIncidentMetadata" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAppDeviceManagementManagedDeviceDiagnostic", "ApiReferenceLink": null, @@ -343174,7 +343174,7 @@ "OutputType": "IMicrosoftGraphPowerliftIncidentMetadata" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAppUserManagedDeviceDiagnostic", "ApiReferenceLink": null, @@ -343189,7 +343189,7 @@ "OutputType": "IMicrosoftGraphPowerliftIncidentMetadata" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaArchiveGroupPlannerPlan", "ApiReferenceLink": null, @@ -343206,7 +343206,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaArchivePlannerPlan", "ApiReferenceLink": null, @@ -343240,7 +343240,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaArchiveServiceAnnouncementMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-archive?view=graph-rest-beta", @@ -343255,7 +343255,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaArchiveTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-archive?view=graph-rest-beta", @@ -343305,7 +343305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaArchiveTeamChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-beta", @@ -343322,7 +343322,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaArchiveTeamPrimaryChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-beta", @@ -343339,7 +343339,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaArchiveTeamworkDeletedTeamChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-beta", @@ -343356,7 +343356,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaArchiveUserPlannerPlan", "ApiReferenceLink": null, @@ -343642,7 +343642,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAvailableDirectoryFederationConfigurationProviderType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-beta", @@ -343673,7 +343673,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAvailableIdentityProviderType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-beta", @@ -343704,7 +343704,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBatchIdentityGovernanceAccessReviewDecisionInstanceRecordDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta", @@ -343721,7 +343721,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta", @@ -343738,7 +343738,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBatchUserPendingAccessReviewInstanceRecordDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta", @@ -343755,7 +343755,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBeginDeviceManagementRemoteAssistancePartnerOnboarding", "ApiReferenceLink": null, @@ -343787,7 +343787,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBufferGroupSiteInformationProtectionDecrypt", "ApiReferenceLink": null, @@ -343804,7 +343804,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBufferGroupSiteInformationProtectionEncrypt", "ApiReferenceLink": null, @@ -343821,7 +343821,7 @@ "OutputType": "IMicrosoftGraphBufferEncryptionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBufferInformationProtectionDecrypt", "ApiReferenceLink": null, @@ -343836,7 +343836,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBufferInformationProtectionEncrypt", "ApiReferenceLink": null, @@ -343851,7 +343851,7 @@ "OutputType": "IMicrosoftGraphBufferEncryptionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBufferSiteInformationProtectionDecrypt", "ApiReferenceLink": null, @@ -343868,7 +343868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBufferSiteInformationProtectionEncrypt", "ApiReferenceLink": null, @@ -343885,7 +343885,7 @@ "OutputType": "IMicrosoftGraphBufferEncryptionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBufferUserInformationProtectionDecrypt", "ApiReferenceLink": null, @@ -343902,7 +343902,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBufferUserInformationProtectionEncrypt", "ApiReferenceLink": null, @@ -343919,7 +343919,7 @@ "OutputType": "IMicrosoftGraphBufferEncryptionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkDeviceManagementComanagedDeviceSetCloudPcReviewStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta", @@ -343934,7 +343934,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkDeviceManagementManagedDeviceSetCloudPcReviewStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta", @@ -343949,7 +343949,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkDeviceManagementVirtualEndpointCloudPcResize", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-bulkresize?view=graph-rest-beta", @@ -343964,7 +343964,7 @@ "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkReprovisionDeviceManagementComanagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta", @@ -343979,7 +343979,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkReprovisionDeviceManagementManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta", @@ -343994,7 +343994,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkReprovisionUserManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta", @@ -344011,7 +344011,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkRestoreDeviceManagementComanagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta", @@ -344026,7 +344026,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkRestoreDeviceManagementManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta", @@ -344041,7 +344041,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkRestoreUserManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta", @@ -344058,7 +344058,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkUserCloudPcResize", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-bulkresize?view=graph-rest-beta", @@ -344075,7 +344075,7 @@ "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaBulkUserManagedDeviceSetCloudPcReviewStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta", @@ -344092,7 +344092,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaCalendarGroupCalendar", "ApiReferenceLink": null, @@ -344107,7 +344107,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaCalendarUserCalendarAllowedCalendarSharingRoles", "ApiReferenceLink": null, @@ -344124,7 +344124,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckinDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", @@ -344166,7 +344166,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckinDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", @@ -344183,7 +344183,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckinGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", @@ -344200,7 +344200,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckinGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", @@ -344217,7 +344217,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckinUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", @@ -344234,7 +344234,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckinUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", @@ -344251,7 +344251,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckoutDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", @@ -344291,7 +344291,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckoutDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", @@ -344306,7 +344306,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckoutGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", @@ -344321,7 +344321,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckoutGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", @@ -344336,7 +344336,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckoutUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", @@ -344351,7 +344351,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCheckoutUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", @@ -344366,7 +344366,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCleanDeviceManagementComanagedDeviceWindowsDevice", "ApiReferenceLink": null, @@ -344383,7 +344383,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCleanDeviceManagementManagedDeviceWindowsDevice", "ApiReferenceLink": null, @@ -344400,7 +344400,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCleanUserManagedDeviceWindowsDevice", "ApiReferenceLink": null, @@ -344417,7 +344417,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaClockTeamScheduleTimeCardIn", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-clockin?view=graph-rest-beta", @@ -344434,7 +344434,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaClockTeamScheduleTimeCardOut", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-clockout?view=graph-rest-beta", @@ -344451,7 +344451,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaCommentSecurityAlert", "ApiReferenceLink": null, @@ -344466,7 +344466,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFile", "ApiReferenceLink": null, @@ -344483,7 +344483,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFile", "ApiReferenceLink": null, @@ -344500,7 +344500,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFile", "ApiReferenceLink": null, @@ -344517,7 +344517,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFile", "ApiReferenceLink": null, @@ -344534,7 +344534,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSPkgAppContentVersionFile", "ApiReferenceLink": null, @@ -344551,7 +344551,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFile", "ApiReferenceLink": null, @@ -344568,7 +344568,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFile", "ApiReferenceLink": null, @@ -344585,7 +344585,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFile", "ApiReferenceLink": null, @@ -344602,7 +344602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFile", "ApiReferenceLink": null, @@ -344619,7 +344619,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFile", "ApiReferenceLink": null, @@ -344636,7 +344636,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFile", "ApiReferenceLink": null, @@ -344653,7 +344653,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFile", "ApiReferenceLink": null, @@ -344670,7 +344670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaConsentDeviceManagementDataSharingConsentToDataSharing", "ApiReferenceLink": null, @@ -344685,7 +344685,7 @@ "OutputType": "IMicrosoftGraphDataSharingConsent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCreateOrGetCommunicationOnlineMeeting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-beta", @@ -344700,7 +344700,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaCreateOrGetUserOnlineMeeting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-beta", @@ -344734,7 +344734,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaCustomDeviceManagementRoleScopeTag", "ApiReferenceLink": null, @@ -344781,7 +344781,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeactivateEducationClassAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-beta", @@ -344813,7 +344813,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeactivateEducationMeAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-beta", @@ -344828,7 +344828,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeactivateEducationUserAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-beta", @@ -344843,7 +344843,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeclineGroupCalendarEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta", @@ -344860,7 +344860,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeclineGroupEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta", @@ -344877,7 +344877,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeclineUserEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta", @@ -344894,7 +344894,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeclineUserEventInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta", @@ -344911,7 +344911,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeprovisionDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -344945,7 +344945,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeprovisionDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -344979,7 +344979,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeprovisionUserManagedDevice", "ApiReferenceLink": null, @@ -344996,7 +344996,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeviceManagementDeviceConfigurationAssignedAccessMultiModeProfile", "ApiReferenceLink": null, @@ -345013,7 +345013,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDeviceManagementDeviceConfigurationWindowsPrivacyAccessControl", "ApiReferenceLink": null, @@ -345030,7 +345030,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDismissDirectoryImpactedResource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-dismiss?view=graph-rest-beta", @@ -345047,7 +345047,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDismissDirectoryRecommendation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-dismiss?view=graph-rest-beta", @@ -345064,7 +345064,7 @@ "OutputType": "IMicrosoftGraphRecommendation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDismissDirectoryRecommendationImpactedResource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-dismiss?view=graph-rest-beta", @@ -345081,7 +345081,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDismissGroupCalendarEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta", @@ -345096,7 +345096,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDismissGroupEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta", @@ -345111,7 +345111,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDismissRiskyServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-dismiss?view=graph-rest-beta", @@ -345126,7 +345126,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDismissRiskyUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyusers-dismiss?view=graph-rest-beta", @@ -345141,7 +345141,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDismissUserEventInstanceReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta", @@ -345156,7 +345156,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDismissUserEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta", @@ -345171,7 +345171,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDownDeviceManagementComanagedDeviceShut", "ApiReferenceLink": null, @@ -345186,7 +345186,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDownDeviceManagementManagedDeviceShut", "ApiReferenceLink": null, @@ -345201,7 +345201,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", "ApiReferenceLink": null, @@ -345232,7 +345232,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDownloadDeviceManagementComanagedDeviceAppDiagnostic", "ApiReferenceLink": null, @@ -345264,7 +345264,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDownloadDeviceManagementComanagedDeviceLogCollectionRequestDeviceLog", "ApiReferenceLink": null, @@ -345279,7 +345279,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDownloadDeviceManagementManagedDeviceAppDiagnostic", "ApiReferenceLink": null, @@ -345311,7 +345311,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDownloadDeviceManagementManagedDeviceLogCollectionRequestDeviceLog", "ApiReferenceLink": null, @@ -345326,7 +345326,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDownloadUserManagedDeviceAppDiagnostic", "ApiReferenceLink": null, @@ -345343,7 +345343,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDownloadUserManagedDeviceLogCollectionRequestDeviceLog", "ApiReferenceLink": null, @@ -345358,7 +345358,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaDownUserManagedDeviceShut", "ApiReferenceLink": null, @@ -345373,7 +345373,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaEnrollDeviceManagementComanagedDeviceNowAction", "ApiReferenceLink": null, @@ -345405,7 +345405,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaEnrollDeviceManagementManagedDeviceNowAction", "ApiReferenceLink": null, @@ -345437,7 +345437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaEnrollUserManagedDeviceNowAction", "ApiReferenceLink": null, @@ -345584,7 +345584,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-estimatestatistics?view=graph-rest-beta", @@ -345616,7 +345616,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-estimatestatistics?view=graph-rest-beta", @@ -345648,7 +345648,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExcuseEducationClassAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-beta", @@ -345680,7 +345680,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExcuseEducationMeAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-beta", @@ -345695,7 +345695,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExcuseEducationUserAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-beta", @@ -345710,7 +345710,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExecuteDeviceManagementComanagedDeviceAction", "ApiReferenceLink": null, @@ -345750,7 +345750,7 @@ "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExecuteDeviceManagementManagedDeviceAction", "ApiReferenceLink": null, @@ -345790,7 +345790,7 @@ "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExecuteDeviceManagementWindowsDriverUpdateProfileAction", "ApiReferenceLink": null, @@ -345807,7 +345807,7 @@ "OutputType": "IMicrosoftGraphBulkDriverActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExecuteUserManagedDeviceAction", "ApiReferenceLink": null, @@ -345824,7 +345824,7 @@ "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaExperienceDeviceManagement", "ApiReferenceLink": null, @@ -345856,7 +345856,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScopeSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -345904,7 +345904,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -345919,7 +345919,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractGroupDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -345934,7 +345934,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractGroupDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -345949,7 +345949,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractGroupSiteInformationProtectionPolicyLabel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta", @@ -345966,7 +345966,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionContentLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractInformationProtectionPolicyLabel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta", @@ -345998,7 +345998,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionContentLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractSecurityInformationProtectionSensitivityLabelContentLabel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-extractcontentlabel?view=graph-rest-beta", @@ -346013,7 +346013,7 @@ "OutputType": "IMicrosoftGraphSecurityContentLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractSiteInformationProtectionPolicyLabel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta", @@ -346030,7 +346030,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionContentLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractUserDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -346045,7 +346045,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractUserDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -346060,7 +346060,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractUserInformationProtectionPolicyLabel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta", @@ -346077,7 +346077,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionContentLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaExtractUserSecurityInformationProtectionSensitivityLabelContentLabel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-extractcontentlabel?view=graph-rest-beta", @@ -346111,7 +346111,7 @@ "OutputType": "IMicrosoftGraphSecurityContentLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFavoriteServiceAnnouncementMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-favorite?view=graph-rest-beta", @@ -347552,7 +347552,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFinancialCompanyJournal", "ApiReferenceLink": null, @@ -347567,7 +347567,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFinancialCompanyPurchaseInvoice", "ApiReferenceLink": null, @@ -347582,7 +347582,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFinancialCompanySaleInvoiceAndSend", "ApiReferenceLink": null, @@ -347597,7 +347597,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFinancialCompanySalesInvoice", "ApiReferenceLink": null, @@ -347612,7 +347612,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFollowDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", @@ -347676,7 +347676,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFollowDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", @@ -347691,7 +347691,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFollowGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", @@ -347706,7 +347706,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFollowGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", @@ -347721,7 +347721,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFollowUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", @@ -347736,7 +347736,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaFollowUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", @@ -347751,7 +347751,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForceDomainDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-forcedelete?view=graph-rest-beta", @@ -347768,7 +347768,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardGroupCalendarEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta", @@ -347785,7 +347785,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardGroupConversationThreadPost", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta", @@ -347819,7 +347819,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardGroupConversationThreadPostInReplyTo", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta", @@ -347836,7 +347836,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardGroupEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta", @@ -347853,7 +347853,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardGroupThreadPost", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta", @@ -347887,7 +347887,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardGroupThreadPostInReplyTo", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta", @@ -347904,7 +347904,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardUserEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta", @@ -347921,7 +347921,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardUserEventInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta", @@ -347938,7 +347938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-beta", @@ -347955,7 +347955,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-beta", @@ -347972,7 +347972,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaForwardUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-beta", @@ -348100,7 +348100,7 @@ "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaGraphChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-beta", @@ -348117,7 +348117,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaGraphDeviceManagement", "ApiReferenceLink": null, @@ -348165,7 +348165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaGraphDeviceManagementDepOnboardingSetting", "ApiReferenceLink": null, @@ -348195,7 +348195,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaGraphGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-unsubscribebymail?view=graph-rest-beta", @@ -348225,7 +348225,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaGraphReportAuthenticationMethod", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethodsroot-usersregisteredbyfeature?view=graph-rest-beta", @@ -348244,7 +348244,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationFeatureSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaGraphUserChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-beta", @@ -348359,7 +348359,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementAndroidManagedAppProtectionPayloadLink", "ApiReferenceLink": null, @@ -348374,7 +348374,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementiOSLobAppProvisioningConfigurationPayloadLink", "ApiReferenceLink": null, @@ -348389,7 +348389,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementiOSManagedAppProtectionPayloadLink", "ApiReferenceLink": null, @@ -348404,7 +348404,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementMdmWindowsInformationProtectionPolicyPayloadLink", "ApiReferenceLink": null, @@ -348419,7 +348419,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementMobileAppPayloadLink", "ApiReferenceLink": null, @@ -348434,7 +348434,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementTargetedManagedAppConfigurationPayloadLink", "ApiReferenceLink": null, @@ -348449,7 +348449,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementDeviceCompliancePolicyPayloadLink", "ApiReferenceLink": null, @@ -348464,7 +348464,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementDeviceConfigurationPayloadLink", "ApiReferenceLink": null, @@ -348479,7 +348479,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementDeviceEnrollmentConfigurationPayloadLink", "ApiReferenceLink": null, @@ -348494,7 +348494,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementScriptPayloadLink", "ApiReferenceLink": null, @@ -348509,7 +348509,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementWindowsAutopilotDeploymentProfilePayloadLink", "ApiReferenceLink": null, @@ -348524,7 +348524,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementZebraFotaConnectorActiveDeployment", "ApiReferenceLink": null, @@ -348538,7 +348538,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaHasUserDeviceEnrollmentConfigurationPayloadLink", "ApiReferenceLink": null, @@ -348555,7 +348555,7 @@ "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaHaveTeamChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-beta", @@ -348587,7 +348587,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaHaveTeamPrimaryChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-beta", @@ -348602,7 +348602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaHaveTeamworkDeletedTeamChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-beta", @@ -348617,7 +348617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInitiateDeviceManagementComanagedDeviceAttestation", "ApiReferenceLink": null, @@ -348632,7 +348632,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInitiateDeviceManagementComanagedDeviceMobileDeviceManagementKeyRecovery", "ApiReferenceLink": null, @@ -348664,7 +348664,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInitiateDeviceManagementComanagedDeviceOnDemandProactiveRemediation", "ApiReferenceLink": null, @@ -348698,7 +348698,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInitiateDeviceManagementManagedDeviceAttestation", "ApiReferenceLink": null, @@ -348713,7 +348713,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInitiateDeviceManagementManagedDeviceMobileDeviceManagementKeyRecovery", "ApiReferenceLink": null, @@ -348745,7 +348745,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInitiateDeviceManagementManagedDeviceOnDemandProactiveRemediation", "ApiReferenceLink": null, @@ -348779,7 +348779,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInitiateUserManagedDeviceAttestation", "ApiReferenceLink": null, @@ -348794,7 +348794,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInitiateUserManagedDeviceMobileDeviceManagementKeyRecovery", "ApiReferenceLink": null, @@ -348809,7 +348809,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInitiateUserManagedDeviceOnDemandProactiveRemediation", "ApiReferenceLink": null, @@ -348826,7 +348826,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInstantiateApplicationTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-beta", @@ -348908,7 +348908,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInviteCommunicationCallParticipant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-beta", @@ -348925,7 +348925,7 @@ "OutputType": "IMicrosoftGraphInviteParticipantsOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInviteDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", @@ -348967,7 +348967,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInviteDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", @@ -348984,7 +348984,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInviteGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", @@ -349001,7 +349001,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInviteGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", @@ -349018,7 +349018,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInviteUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", @@ -349035,7 +349035,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaInviteUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", @@ -349052,7 +349052,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaIsDeviceManagementDeviceHealthScriptGlobalScriptAvailable", "ApiReferenceLink": null, @@ -349083,7 +349083,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaKeepCommunicationCallAlive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-beta", @@ -349115,7 +349115,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaLicenseUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reprocesslicenseassignment?view=graph-rest-beta", @@ -349147,7 +349147,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaLogCommunicationCallTeleconferenceDeviceQuality", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-beta", @@ -349162,7 +349162,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaLogoutDeviceManagementComanagedDeviceSharedAppleDeviceActiveUser", "ApiReferenceLink": null, @@ -349177,7 +349177,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser", "ApiReferenceLink": null, @@ -349192,7 +349192,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaLogoutUserManagedDeviceSharedAppleDeviceActiveUser", "ApiReferenceLink": null, @@ -349207,7 +349207,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkChatReadForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-beta", @@ -349224,7 +349224,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkChatUnreadForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-beta", @@ -349241,7 +349241,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkServiceAnnouncementMessageRead", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markread?view=graph-rest-beta", @@ -349256,7 +349256,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkServiceAnnouncementMessageUnread", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markunread?view=graph-rest-beta", @@ -349271,7 +349271,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkUserChatReadForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-beta", @@ -349288,7 +349288,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkUserChatUnreadForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-beta", @@ -349305,7 +349305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkUserMailFolderChildFolderMessageAsJunk", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasjunk?view=graph-rest-beta", @@ -349322,7 +349322,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkUserMailFolderChildFolderMessageAsNotJunk", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasnotjunk?view=graph-rest-beta", @@ -349339,7 +349339,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkUserMailFolderMessageAsJunk", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasjunk?view=graph-rest-beta", @@ -349356,7 +349356,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkUserMailFolderMessageAsNotJunk", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasnotjunk?view=graph-rest-beta", @@ -349373,7 +349373,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkUserMessageAsJunk", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasjunk?view=graph-rest-beta", @@ -349390,7 +349390,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMarkUserMessageAsNotJunk", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasnotjunk?view=graph-rest-beta", @@ -349772,7 +349772,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMuteAllCommunicationCallParticipant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-muteall?view=graph-rest-beta", @@ -349806,7 +349806,7 @@ "OutputType": "IMicrosoftGraphMuteParticipantsOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMuteCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-beta", @@ -349840,7 +349840,7 @@ "OutputType": "IMicrosoftGraphMuteParticipantOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaMuteCommunicationCallParticipant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-beta", @@ -349902,7 +349902,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaOverrideDeviceManagementComanagedDeviceComplianceState", "ApiReferenceLink": null, @@ -349919,7 +349919,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaOverrideDeviceManagementManagedDeviceComplianceState", "ApiReferenceLink": null, @@ -349936,7 +349936,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaOverrideUserManagedDeviceComplianceState", "ApiReferenceLink": null, @@ -349953,7 +349953,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaParseApplicationSynchronizationJobSchemaExpression", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta", @@ -349970,7 +349970,7 @@ "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaParseApplicationSynchronizationTemplateSchemaExpression", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta", @@ -349987,7 +349987,7 @@ "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaParseServicePrincipalSynchronizationJobSchemaExpression", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta", @@ -350021,7 +350021,7 @@ "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaParseServicePrincipalSynchronizationTemplateSchemaExpression", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta", @@ -350055,7 +350055,7 @@ "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaPendingUserApp", "ApiReferenceLink": null, @@ -350087,7 +350087,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceSummarizedAppState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPinEducationClassModule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-pin?view=graph-rest-beta", @@ -350119,7 +350119,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPlayCommunicationCallPrompt", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-beta", @@ -350153,7 +350153,7 @@ "OutputType": "IMicrosoftGraphPlayPromptOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPlayDeviceManagementComanagedDeviceLostModeSound", "ApiReferenceLink": null, @@ -350170,7 +350170,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPlayDeviceManagementManagedDeviceLostModeSound", "ApiReferenceLink": null, @@ -350187,7 +350187,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPlayUserManagedDeviceLostModeSound", "ApiReferenceLink": null, @@ -350204,7 +350204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPostponeDirectoryImpactedResource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-postpone?view=graph-rest-beta", @@ -350221,7 +350221,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPostponeDirectoryRecommendation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-postpone?view=graph-rest-beta", @@ -350238,7 +350238,7 @@ "OutputType": "IMicrosoftGraphRecommendation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPostponeDirectoryRecommendationImpactedResource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-postpone?view=graph-rest-beta", @@ -350255,7 +350255,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPreviewDriveItem", "ApiReferenceLink": null, @@ -350321,7 +350321,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPreviewDriveRoot", "ApiReferenceLink": null, @@ -350338,7 +350338,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPreviewGroupDriveItem", "ApiReferenceLink": null, @@ -350355,7 +350355,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPreviewGroupDriveRoot", "ApiReferenceLink": null, @@ -350372,7 +350372,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaPreviewGroupOnenotePage", "ApiReferenceLink": null, @@ -350387,7 +350387,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -350402,7 +350402,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -350417,7 +350417,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenotePage", "ApiReferenceLink": null, @@ -350432,7 +350432,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -350447,7 +350447,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -350462,7 +350462,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPreviewUserDriveItem", "ApiReferenceLink": null, @@ -350479,7 +350479,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPreviewUserDriveRoot", "ApiReferenceLink": null, @@ -350496,7 +350496,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaPreviewUserOnenotePage", "ApiReferenceLink": null, @@ -350511,7 +350511,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPromoteDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-promote?view=graph-rest-beta", @@ -350526,7 +350526,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaPromoteDomainToInitial", "ApiReferenceLink": null, @@ -350541,7 +350541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaQueryDeviceManagementResourceAccessProfileByPlatformType", "ApiReferenceLink": null, @@ -350556,7 +350556,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaQuerySearch", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-query?view=graph-rest-beta", @@ -350644,7 +350644,7 @@ "OutputType": "IMicrosoftGraphSearchResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReactivateDirectoryImpactedResource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-reactivate?view=graph-rest-beta", @@ -350659,7 +350659,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReactivateDirectoryRecommendation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-reactivate?view=graph-rest-beta", @@ -350674,7 +350674,7 @@ "OutputType": "IMicrosoftGraphRecommendation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReactivateDirectoryRecommendationImpactedResource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-reactivate?view=graph-rest-beta", @@ -350689,7 +350689,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReassignEducationClassAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-beta", @@ -350729,7 +350729,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReassignEducationMeAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-beta", @@ -350744,7 +350744,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReassignEducationUserAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-beta", @@ -350759,7 +350759,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeDriveItemSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350774,7 +350774,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeDriveListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350789,7 +350789,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeDriveRootSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350804,7 +350804,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeGroupDriveItemSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350819,7 +350819,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeGroupDriveListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350834,7 +350834,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeGroupDriveRootSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350849,7 +350849,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeGroupSiteListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350864,7 +350864,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeShareListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350879,7 +350879,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeSiteListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350894,7 +350894,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350909,7 +350909,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeUserDriveItemSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350924,7 +350924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeUserDriveListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -350939,7 +350939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReauthorizeUserDriveRootSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", @@ -351014,7 +351014,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRecordCommunicationCall", "ApiReferenceLink": null, @@ -351031,7 +351031,7 @@ "OutputType": "IMicrosoftGraphRecordOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRecordCommunicationCallResponse", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-record?view=graph-rest-beta", @@ -351048,7 +351048,7 @@ "OutputType": "IMicrosoftGraphRecordOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", @@ -351063,7 +351063,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDecisionInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", @@ -351080,7 +351080,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDecisionInstanceStageDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", @@ -351097,7 +351097,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", @@ -351114,7 +351114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", @@ -351131,7 +351131,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRecordUserPendingAccessReviewInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", @@ -351148,7 +351148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRedirectCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-beta", @@ -351165,7 +351165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRedirectPrintPrinterJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-beta", @@ -351182,7 +351182,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRedirectPrintPrinterShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-beta", @@ -351199,7 +351199,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRedirectPrintShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-beta", @@ -351216,7 +351216,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReenableDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -351248,7 +351248,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReenableDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -351280,7 +351280,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReenableUserManagedDevice", "ApiReferenceLink": null, @@ -351295,7 +351295,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRejectCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-beta", @@ -351312,7 +351312,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRejectDeviceManagementOperationApprovalRequest", "ApiReferenceLink": null, @@ -351346,7 +351346,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRemediateIdentityGovernanceRoleManagementAlertIncident", "ApiReferenceLink": null, @@ -351361,7 +351361,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRemediateSecurityCollaborationAnalyzedEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-analyzedemail-remediate?view=graph-rest-beta", @@ -351376,7 +351376,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -351391,7 +351391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -351406,7 +351406,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -351421,7 +351421,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -351436,7 +351436,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSPkgAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -351451,7 +351451,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -351466,7 +351466,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -351481,7 +351481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -351496,7 +351496,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -351511,7 +351511,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFileUpload", "ApiReferenceLink": null, @@ -351526,7 +351526,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFileUpload", "ApiReferenceLink": null, @@ -351541,7 +351541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFileUpload", "ApiReferenceLink": null, @@ -351556,7 +351556,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-renew?view=graph-rest-beta", @@ -351588,7 +351588,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRenewGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-renewgroup?view=graph-rest-beta", @@ -351620,7 +351620,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReopenComplianceEdiscoveryCase", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-reopen?view=graph-rest-beta", @@ -351652,7 +351652,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReopenSecurityCaseEdiscoveryCase", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-reopen?view=graph-rest-beta", @@ -351684,7 +351684,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReorderDeviceManagementConfigurationPolicy", "ApiReferenceLink": null, @@ -351701,7 +351701,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReorderDeviceManagementReusablePolicySettingReferencingConfigurationPolicy", "ApiReferenceLink": null, @@ -351718,7 +351718,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyAllUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-beta", @@ -351735,7 +351735,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyAllUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-beta", @@ -351752,7 +351752,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyAllUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-beta", @@ -351769,7 +351769,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyGroupConversationThread", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-beta", @@ -351803,7 +351803,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyGroupConversationThreadPost", "ApiReferenceLink": null, @@ -351837,7 +351837,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyGroupConversationThreadPostInReplyTo", "ApiReferenceLink": null, @@ -351854,7 +351854,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyGroupThread", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-beta", @@ -351888,7 +351888,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyGroupThreadPost", "ApiReferenceLink": null, @@ -351922,7 +351922,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyGroupThreadPostInReplyTo", "ApiReferenceLink": null, @@ -351939,7 +351939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-beta", @@ -351956,7 +351956,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-beta", @@ -351973,7 +351973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReplyUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-beta", @@ -351990,7 +351990,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaReportServiceAnnouncementHealthOverviewIssueIncident", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-beta", @@ -352005,7 +352005,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaReportServiceAnnouncementIssueIncident", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-beta", @@ -352020,7 +352020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReprovisionDeviceManagementComanagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-reprovisioncloudpc?view=graph-rest-beta", @@ -352035,7 +352035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReprovisionDeviceManagementManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-reprovisioncloudpc?view=graph-rest-beta", @@ -352050,7 +352050,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReprovisionDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta", @@ -352067,7 +352067,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReprovisionUserCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta", @@ -352084,7 +352084,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReprovisionUserManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-reprovisioncloudpc?view=graph-rest-beta", @@ -352099,7 +352099,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRetireDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -352114,7 +352114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRetireDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -352129,7 +352129,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRetireUserManagedDevice", "ApiReferenceLink": null, @@ -352144,7 +352144,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRetryContactServiceProvisioning", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-retryserviceprovisioning?view=graph-rest-beta", @@ -352159,7 +352159,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRetryDeviceManagementVirtualEndpointCloudPcPartnerAgentInstallation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-retrypartneragentinstallation?view=graph-rest-beta", @@ -352174,7 +352174,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRetryGroupServiceProvisioning", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-retryserviceprovisioning?view=graph-rest-beta", @@ -352189,7 +352189,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRetryUserCloudPcPartnerAgentInstallation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-retrypartneragentinstallation?view=graph-rest-beta", @@ -352204,7 +352204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRetryUserServiceProvisioning", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-retryserviceprovisioning?view=graph-rest-beta", @@ -352219,7 +352219,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReturnEducationClassAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-beta", @@ -352251,7 +352251,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReturnEducationMeAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-beta", @@ -352266,7 +352266,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReturnEducationUserAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-beta", @@ -352281,7 +352281,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaReuploadDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-reupload?view=graph-rest-beta", @@ -352296,7 +352296,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRotateDeviceManagementComanagedDeviceBitLockerKey", "ApiReferenceLink": null, @@ -352328,7 +352328,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRotateDeviceManagementComanagedDeviceFileVaultKey", "ApiReferenceLink": null, @@ -352343,7 +352343,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRotateDeviceManagementComanagedDeviceLocalAdminPassword", "ApiReferenceLink": null, @@ -352375,7 +352375,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRotateDeviceManagementManagedDeviceBitLockerKey", "ApiReferenceLink": null, @@ -352407,7 +352407,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRotateDeviceManagementManagedDeviceFileVaultKey", "ApiReferenceLink": null, @@ -352422,7 +352422,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRotateDeviceManagementManagedDeviceLocalAdminPassword", "ApiReferenceLink": null, @@ -352454,7 +352454,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRotateUserManagedDeviceBitLockerKey", "ApiReferenceLink": null, @@ -352469,7 +352469,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRotateUserManagedDeviceFileVaultKey", "ApiReferenceLink": null, @@ -352484,7 +352484,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaRotateUserManagedDeviceLocalAdminPassword", "ApiReferenceLink": null, @@ -352499,7 +352499,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaScanDeviceManagementComanagedDeviceWindowsDefender", "ApiReferenceLink": null, @@ -352516,7 +352516,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaScanDeviceManagementManagedDeviceWindowsDefender", "ApiReferenceLink": null, @@ -352533,7 +352533,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaScanUserManagedDeviceWindowsDefender", "ApiReferenceLink": null, @@ -352550,7 +352550,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaScheduleDeviceManagementDeviceCompliancePolicyActionForRule", "ApiReferenceLink": null, @@ -352687,7 +352687,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedApprovalRoleInfoActivate", "ApiReferenceLink": null, @@ -352704,7 +352704,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedApprovalRoleInfoDeactivate", "ApiReferenceLink": null, @@ -352719,7 +352719,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleActivate", "ApiReferenceLink": null, @@ -352736,7 +352736,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleAssignmentRequestRoleInfoActivate", "ApiReferenceLink": null, @@ -352753,7 +352753,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleAssignmentRequestRoleInfoDeactivate", "ApiReferenceLink": null, @@ -352768,7 +352768,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleAssignmentRoleInfoActivate", "ApiReferenceLink": null, @@ -352785,7 +352785,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleAssignmentRoleInfoDeactivate", "ApiReferenceLink": null, @@ -352800,7 +352800,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleDeactivate", "ApiReferenceLink": null, @@ -352815,7 +352815,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaShareDeviceManagementDepOnboardingSettingForSchoolDataSyncService", "ApiReferenceLink": null, @@ -352830,7 +352830,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaShareTeamSchedule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-share?view=graph-rest-beta", @@ -352864,7 +352864,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSignGroupSiteInformationProtectionDigest", "ApiReferenceLink": null, @@ -352881,7 +352881,7 @@ "OutputType": "IMicrosoftGraphSigningResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSignInformationProtectionDigest", "ApiReferenceLink": null, @@ -352896,7 +352896,7 @@ "OutputType": "IMicrosoftGraphSigningResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSignSiteInformationProtectionDigest", "ApiReferenceLink": null, @@ -352913,7 +352913,7 @@ "OutputType": "IMicrosoftGraphSigningResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSignUserInformationProtectionDigest", "ApiReferenceLink": null, @@ -352930,7 +352930,7 @@ "OutputType": "IMicrosoftGraphSigningResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSnoozeGroupCalendarEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta", @@ -352947,7 +352947,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSnoozeGroupEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta", @@ -352964,7 +352964,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSnoozeUserEventInstanceReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta", @@ -352981,7 +352981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSnoozeUserEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta", @@ -352998,7 +352998,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftChatMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353013,7 +353013,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftChatMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353028,7 +353028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftTeamChannelMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353043,7 +353043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftTeamChannelMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353058,7 +353058,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftTeamPrimaryChannelMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353073,7 +353073,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftTeamPrimaryChannelMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353088,7 +353088,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftTeamworkDeletedTeamChannelMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353103,7 +353103,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftTeamworkDeletedTeamChannelMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353118,7 +353118,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftUserChatMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353133,7 +353133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSoftUserChatMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", @@ -353148,7 +353148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSubscribeCommunicationCallToTone", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-beta", @@ -353165,7 +353165,7 @@ "OutputType": "IMicrosoftGraphSubscribeToToneOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaSubscribeGroupByMail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-subscribebymail?view=graph-rest-beta", @@ -353292,7 +353292,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowRun", "ApiReferenceLink": null, @@ -353324,7 +353324,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRunSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", "ApiReferenceLink": null, @@ -353356,7 +353356,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowTaskReport", "ApiReferenceLink": null, @@ -353371,7 +353371,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReportSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -353386,7 +353386,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaSupportedUserOutlookLanguage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlookuser-supportedlanguages?view=graph-rest-beta", @@ -353426,7 +353426,7 @@ "OutputType": "IMicrosoftGraphLocaleInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTagTenantRelationshipManagedTenantTagUnassign", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenanttag-unassigntag?view=graph-rest-beta", @@ -353443,7 +353443,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTargetDeviceAppManagementManagedAppPolicyApp", "ApiReferenceLink": null, @@ -353477,7 +353477,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp", "ApiReferenceLink": null, @@ -353511,7 +353511,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp", "ApiReferenceLink": null, @@ -353545,7 +353545,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTargetDeviceAppManagementTargetedManagedAppConfigurationApp", "ApiReferenceLink": null, @@ -353562,7 +353562,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTargetDeviceAppManagementWindowsManagedAppProtectionApp", "ApiReferenceLink": null, @@ -353596,7 +353596,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTenantRelationshipManagedTenantGroupSearch", "ApiReferenceLink": null, @@ -353628,7 +353628,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTenantRelationshipManagedTenantOffboard", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenant-offboardtenant?view=graph-rest-beta", @@ -353643,7 +353643,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTerminateDeviceManagementPartner", "ApiReferenceLink": null, @@ -353675,7 +353675,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaTimeUserOutlook", "ApiReferenceLink": null, @@ -353717,7 +353717,7 @@ "OutputType": "IMicrosoftGraphTimeZoneInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTranslateUserExchangeId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-translateexchangeids?view=graph-rest-beta", @@ -353775,7 +353775,7 @@ "OutputType": "IMicrosoftGraphConvertIdResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTroubleshootDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-beta", @@ -353790,7 +353790,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaTroubleshootUserCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-beta", @@ -353805,7 +353805,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnarchiveGroupPlannerPlan", "ApiReferenceLink": null, @@ -353822,7 +353822,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnarchivePlannerPlan", "ApiReferenceLink": null, @@ -353856,7 +353856,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnarchiveServiceAnnouncementMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unarchive?view=graph-rest-beta", @@ -353871,7 +353871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnarchiveTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-unarchive?view=graph-rest-beta", @@ -353919,7 +353919,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnarchiveTeamChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-beta", @@ -353934,7 +353934,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnarchiveTeamPrimaryChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-beta", @@ -353949,7 +353949,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnarchiveTeamworkDeletedTeamChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-beta", @@ -353964,7 +353964,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnarchiveUserPlannerPlan", "ApiReferenceLink": null, @@ -353981,7 +353981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnassignDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceUserFromDevice", "ApiReferenceLink": null, @@ -353996,7 +353996,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice", "ApiReferenceLink": null, @@ -354028,7 +354028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnbindDeviceManagementAndroidForWorkSetting", "ApiReferenceLink": null, @@ -354042,7 +354042,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnbindDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "ApiReferenceLink": null, @@ -354105,7 +354105,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnfavoriteServiceAnnouncementMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unfavorite?view=graph-rest-beta", @@ -354120,7 +354120,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnfollowDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", @@ -354135,7 +354135,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnfollowDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", @@ -354150,7 +354150,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnfollowGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", @@ -354165,7 +354165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnfollowGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", @@ -354180,7 +354180,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnfollowUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", @@ -354195,7 +354195,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnfollowUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", @@ -354210,7 +354210,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnmuteCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-beta", @@ -354244,7 +354244,7 @@ "OutputType": "IMicrosoftGraphUnmuteParticipantOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnpinEducationClassModule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-unpin?view=graph-rest-beta", @@ -354276,7 +354276,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnsubmitEducationClassAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-beta", @@ -354316,7 +354316,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnsubmitEducationMeAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-beta", @@ -354331,7 +354331,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnsubmitEducationUserAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-beta", @@ -354346,7 +354346,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnsubscribeUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-unsubscribe?view=graph-rest-beta", @@ -354361,7 +354361,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnsubscribeUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-unsubscribe?view=graph-rest-beta", @@ -354376,7 +354376,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUnsubscribeUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-unsubscribe?view=graph-rest-beta", @@ -354391,7 +354391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUploadDeviceManagementDepOnboardingSettingDepToken", "ApiReferenceLink": null, @@ -354408,7 +354408,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUploadDeviceManagementGroupPolicyUploadedDefinitionFileNewVersion", "ApiReferenceLink": null, @@ -354425,7 +354425,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaUploadEducationSynchronizationProfileUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-uploadurl?view=graph-rest-beta", @@ -354457,7 +354457,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUploadIdentityApiConnectorClientCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta", @@ -354474,7 +354474,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta", @@ -354491,7 +354491,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta", @@ -354508,7 +354508,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUploadIdentityB2XUserFlowApiConnectorConfigurationPreTokenIssuanceClientCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta", @@ -354525,7 +354525,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUploadTrustFrameworkKeySetCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-uploadcertificate?view=graph-rest-beta", @@ -354542,7 +354542,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUploadTrustFrameworkKeySetPkcs12", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-uploadpkcs12?view=graph-rest-beta", @@ -354559,7 +354559,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgBetaUploadTrustFrameworkKeySetSecret", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-uploadsecret?view=graph-rest-beta", @@ -354576,7 +354576,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaUsageIdentityConditionalAccessAuthenticationStrengthPolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-beta", @@ -354593,7 +354593,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaUsagePolicyAuthenticationStrengthPolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-beta", @@ -354633,7 +354633,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaViewUserReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reminderview?view=graph-rest-beta", @@ -354648,7 +354648,7 @@ "OutputType": "IMicrosoftGraphReminder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgCalendarGroupCalendar", "ApiReferenceLink": null, @@ -354663,7 +354663,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles", "ApiReferenceLink": null, @@ -354680,7 +354680,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckinDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", @@ -354722,7 +354722,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckinDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", @@ -354739,7 +354739,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckinGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", @@ -354756,7 +354756,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckinGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", @@ -354773,7 +354773,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckinUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", @@ -354790,7 +354790,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckinUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", @@ -354807,7 +354807,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckoutDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", @@ -354847,7 +354847,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckoutDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", @@ -354862,7 +354862,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckoutGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", @@ -354877,7 +354877,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckoutGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", @@ -354892,7 +354892,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckoutUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", @@ -354907,7 +354907,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCheckoutUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", @@ -354922,7 +354922,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-cleanwindowsdevice?view=graph-rest-1.0", @@ -354939,7 +354939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCleanUserManagedDeviceWindowsDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-cleanwindowsdevice?view=graph-rest-1.0", @@ -354956,7 +354956,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgCommentSecurityAlert", "ApiReferenceLink": null, @@ -354971,7 +354971,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFile", "ApiReferenceLink": null, @@ -354988,7 +354988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFile", "ApiReferenceLink": null, @@ -355005,7 +355005,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFile", "ApiReferenceLink": null, @@ -355022,7 +355022,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFile", "ApiReferenceLink": null, @@ -355039,7 +355039,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFile", "ApiReferenceLink": null, @@ -355056,7 +355056,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFile", "ApiReferenceLink": null, @@ -355073,7 +355073,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFile", "ApiReferenceLink": null, @@ -355090,7 +355090,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFile", "ApiReferenceLink": null, @@ -355107,7 +355107,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFile", "ApiReferenceLink": null, @@ -355124,7 +355124,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFile", "ApiReferenceLink": null, @@ -355141,7 +355141,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFile", "ApiReferenceLink": null, @@ -355158,7 +355158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCreateOrGetCommunicationOnlineMeeting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0", @@ -355173,7 +355173,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgCreateOrGetUserOnlineMeeting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0", @@ -355207,7 +355207,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDeactivateEducationClassAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-1.0", @@ -355239,7 +355239,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDeactivateEducationMeAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-1.0", @@ -355254,7 +355254,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDeactivateEducationUserAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-1.0", @@ -355269,7 +355269,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDeclineGroupCalendarEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0", @@ -355286,7 +355286,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDeclineGroupEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0", @@ -355303,7 +355303,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDeclineUserEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0", @@ -355320,7 +355320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDeclineUserEventInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0", @@ -355337,7 +355337,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDismissGroupCalendarEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0", @@ -355352,7 +355352,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDismissGroupEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0", @@ -355367,7 +355367,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDismissRiskyServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-dismiss?view=graph-rest-1.0", @@ -355382,7 +355382,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDismissRiskyUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyuser-dismiss?view=graph-rest-1.0", @@ -355397,7 +355397,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDismissUserEventInstanceReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0", @@ -355412,7 +355412,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDismissUserEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0", @@ -355427,7 +355427,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDownDeviceManagementManagedDeviceShut", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-shutdown?view=graph-rest-1.0", @@ -355442,7 +355442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-applepushnotificationcertificate-downloadapplepushnotificationcertificatesigningrequest?view=graph-rest-1.0", @@ -355473,7 +355473,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgDownUserManagedDeviceShut", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-shutdown?view=graph-rest-1.0", @@ -355488,7 +355488,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-estimatestatistics?view=graph-rest-1.0", @@ -355520,7 +355520,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgExperienceDeviceManagement", "ApiReferenceLink": null, @@ -355551,7 +355551,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevicesSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgExtractDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -355599,7 +355599,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgExtractDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -355614,7 +355614,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgExtractGroupDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -355629,7 +355629,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgExtractGroupDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -355644,7 +355644,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgExtractUserDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -355659,7 +355659,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgExtractUserDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -355674,7 +355674,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgFavoriteServiceAnnouncementMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-favorite?view=graph-rest-1.0", @@ -356785,7 +356785,7 @@ "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgFollowDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", @@ -356849,7 +356849,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgFollowDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", @@ -356864,7 +356864,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgFollowGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", @@ -356879,7 +356879,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgFollowGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", @@ -356894,7 +356894,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgFollowUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", @@ -356909,7 +356909,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgFollowUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", @@ -356924,7 +356924,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForceDomainDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-forcedelete?view=graph-rest-1.0", @@ -356941,7 +356941,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardGroupCalendarEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0", @@ -356958,7 +356958,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardGroupConversationThreadPost", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0", @@ -356992,7 +356992,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardGroupConversationThreadPostInReplyTo", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0", @@ -357009,7 +357009,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardGroupEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0", @@ -357026,7 +357026,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardGroupThreadPost", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0", @@ -357060,7 +357060,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardGroupThreadPostInReplyTo", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0", @@ -357077,7 +357077,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardUserEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0", @@ -357094,7 +357094,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardUserEventInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0", @@ -357111,7 +357111,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-1.0", @@ -357128,7 +357128,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-1.0", @@ -357145,7 +357145,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgForwardUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-1.0", @@ -357273,7 +357273,7 @@ "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgGraphChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-1.0", @@ -357305,7 +357305,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgGraphGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-unsubscribebymail?view=graph-rest-1.0", @@ -357335,7 +357335,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgGraphReportAuthenticationMethod", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethodsroot-usersregisteredbyfeature?view=graph-rest-1.0", @@ -357354,7 +357354,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationFeatureSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgGraphUserChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-1.0", @@ -357386,7 +357386,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgHaveTeamChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0", @@ -357418,7 +357418,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgHaveTeamPrimaryChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0", @@ -357433,7 +357433,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgHaveTeamworkDeletedTeamChannel", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0", @@ -357448,7 +357448,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgInstantiateApplicationTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-1.0", @@ -357490,7 +357490,7 @@ "OutputType": "IMicrosoftGraphApplicationServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgInviteCommunicationCallParticipant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0", @@ -357507,7 +357507,7 @@ "OutputType": "IMicrosoftGraphInviteParticipantsOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgInviteDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", @@ -357549,7 +357549,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgInviteDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", @@ -357566,7 +357566,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgInviteGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", @@ -357583,7 +357583,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgInviteGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", @@ -357600,7 +357600,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgInviteUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", @@ -357617,7 +357617,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgInviteUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", @@ -357634,7 +357634,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgKeepCommunicationCallAlive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-1.0", @@ -357666,7 +357666,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgLicenseUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reprocesslicenseassignment?view=graph-rest-1.0", @@ -357698,7 +357698,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-1.0", @@ -357713,7 +357713,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-logoutsharedappledeviceactiveuser?view=graph-rest-1.0", @@ -357728,7 +357728,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-logoutsharedappledeviceactiveuser?view=graph-rest-1.0", @@ -357743,7 +357743,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgMarkChatReadForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-1.0", @@ -357760,7 +357760,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgMarkChatUnreadForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-1.0", @@ -357777,7 +357777,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgMarkServiceAnnouncementMessageRead", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markread?view=graph-rest-1.0", @@ -357792,7 +357792,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgMarkServiceAnnouncementMessageUnread", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markunread?view=graph-rest-1.0", @@ -357807,7 +357807,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgMarkUserChatReadForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-1.0", @@ -357824,7 +357824,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgMarkUserChatUnreadForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-1.0", @@ -357841,7 +357841,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgMuteCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-1.0", @@ -357875,7 +357875,7 @@ "OutputType": "IMicrosoftGraphMuteParticipantOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgMuteCommunicationCallParticipant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-1.0", @@ -357909,7 +357909,7 @@ "OutputType": "IMicrosoftGraphMuteParticipantOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgParseApplicationSynchronizationJobSchemaExpression", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0", @@ -357926,7 +357926,7 @@ "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0", @@ -357943,7 +357943,7 @@ "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0", @@ -357977,7 +357977,7 @@ "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0", @@ -358011,7 +358011,7 @@ "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgPinEducationClassModule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-pin?view=graph-rest-1.0", @@ -358043,7 +358043,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgPlayCommunicationCallPrompt", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-1.0", @@ -358077,7 +358077,7 @@ "OutputType": "IMicrosoftGraphPlayPromptOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgPreviewDriveItem", "ApiReferenceLink": null, @@ -358143,7 +358143,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgPreviewDriveRoot", "ApiReferenceLink": null, @@ -358160,7 +358160,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgPreviewGroupDriveItem", "ApiReferenceLink": null, @@ -358177,7 +358177,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgPreviewGroupDriveRoot", "ApiReferenceLink": null, @@ -358194,7 +358194,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgPreviewGroupOnenotePage", "ApiReferenceLink": null, @@ -358209,7 +358209,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -358224,7 +358224,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -358239,7 +358239,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenotePage", "ApiReferenceLink": null, @@ -358254,7 +358254,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -358269,7 +358269,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -358284,7 +358284,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgPreviewUserDriveItem", "ApiReferenceLink": null, @@ -358301,7 +358301,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgPreviewUserDriveRoot", "ApiReferenceLink": null, @@ -358318,7 +358318,7 @@ "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgPreviewUserOnenotePage", "ApiReferenceLink": null, @@ -358333,7 +358333,7 @@ "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgPromoteDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-promote?view=graph-rest-1.0", @@ -358348,7 +358348,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgQuerySearch", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-query?view=graph-rest-1.0", @@ -358436,7 +358436,7 @@ "OutputType": "IMicrosoftGraphSearchResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReassignEducationClassAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-1.0", @@ -358476,7 +358476,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReassignEducationMeAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-1.0", @@ -358491,7 +358491,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReassignEducationUserAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-1.0", @@ -358506,7 +358506,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeDriveItemSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358521,7 +358521,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeDriveListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358536,7 +358536,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeDriveRootSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358551,7 +358551,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeGroupDriveItemSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358566,7 +358566,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeGroupDriveListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358581,7 +358581,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeGroupDriveRootSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358596,7 +358596,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeGroupSiteListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358611,7 +358611,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeShareListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358626,7 +358626,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeSiteListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358641,7 +358641,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358656,7 +358656,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeUserDriveItemSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358671,7 +358671,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeUserDriveListSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358686,7 +358686,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReauthorizeUserDriveRootSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", @@ -358761,7 +358761,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRecordCommunicationCallResponse", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-record?view=graph-rest-1.0", @@ -358778,7 +358778,7 @@ "OutputType": "IMicrosoftGraphRecordOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRedirectCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-1.0", @@ -358795,7 +358795,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRedirectPrintPrinterJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-1.0", @@ -358812,7 +358812,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRedirectPrintShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-1.0", @@ -358829,7 +358829,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRejectCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-1.0", @@ -358846,7 +358846,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -358861,7 +358861,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -358876,7 +358876,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -358891,7 +358891,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -358906,7 +358906,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -358921,7 +358921,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -358936,7 +358936,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -358951,7 +358951,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFileUpload", "ApiReferenceLink": null, @@ -358966,7 +358966,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFileUpload", "ApiReferenceLink": null, @@ -358981,7 +358981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFileUpload", "ApiReferenceLink": null, @@ -358996,7 +358996,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFileUpload", "ApiReferenceLink": null, @@ -359011,7 +359011,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRenewGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-renew?view=graph-rest-1.0", @@ -359043,7 +359043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReopenSecurityCaseEdiscoveryCase", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-reopen?view=graph-rest-1.0", @@ -359075,7 +359075,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyAllUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-1.0", @@ -359092,7 +359092,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyAllUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-1.0", @@ -359109,7 +359109,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyAllUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-1.0", @@ -359126,7 +359126,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyGroupConversationThread", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0", @@ -359160,7 +359160,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyGroupConversationThreadPost", "ApiReferenceLink": null, @@ -359194,7 +359194,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyGroupConversationThreadPostInReplyTo", "ApiReferenceLink": null, @@ -359211,7 +359211,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyGroupThread", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0", @@ -359245,7 +359245,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyGroupThreadPost", "ApiReferenceLink": null, @@ -359279,7 +359279,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyGroupThreadPostInReplyTo", "ApiReferenceLink": null, @@ -359296,7 +359296,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-1.0", @@ -359313,7 +359313,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-1.0", @@ -359330,7 +359330,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReplyUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-1.0", @@ -359347,7 +359347,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-1.0", @@ -359362,7 +359362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgReportServiceAnnouncementIssueIncident", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-1.0", @@ -359377,7 +359377,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRetireDeviceManagementManagedDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-retire?view=graph-rest-1.0", @@ -359392,7 +359392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRetireUserManagedDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-retire?view=graph-rest-1.0", @@ -359407,7 +359407,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRetryContactServiceProvisioning", "ApiReferenceLink": null, @@ -359422,7 +359422,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRetryGroupServiceProvisioning", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-retryserviceprovisioning?view=graph-rest-1.0", @@ -359437,7 +359437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgRetryUserServiceProvisioning", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-retryserviceprovisioning?view=graph-rest-1.0", @@ -359452,7 +359452,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReturnEducationClassAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-1.0", @@ -359484,7 +359484,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReturnEducationMeAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-1.0", @@ -359499,7 +359499,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgReturnEducationUserAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-1.0", @@ -359514,7 +359514,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderscan?view=graph-rest-1.0", @@ -359531,7 +359531,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgScanUserManagedDeviceWindowsDefender", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderscan?view=graph-rest-1.0", @@ -359548,7 +359548,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-devicecompliancepolicy-scheduleactionsforrules?view=graph-rest-1.0", @@ -359565,7 +359565,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgShareTeamSchedule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-share?view=graph-rest-1.0", @@ -359599,7 +359599,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSnoozeGroupCalendarEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0", @@ -359616,7 +359616,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSnoozeGroupEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0", @@ -359633,7 +359633,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSnoozeUserEventInstanceReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0", @@ -359650,7 +359650,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSnoozeUserEventReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0", @@ -359667,7 +359667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftChatMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359682,7 +359682,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftChatMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359697,7 +359697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftTeamChannelMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359712,7 +359712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftTeamChannelMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359727,7 +359727,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftTeamPrimaryChannelMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359742,7 +359742,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftTeamPrimaryChannelMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359757,7 +359757,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftTeamworkDeletedTeamChannelMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359772,7 +359772,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftTeamworkDeletedTeamChannelMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359787,7 +359787,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftUserChatMessageDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359802,7 +359802,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSoftUserChatMessageReplyDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", @@ -359817,7 +359817,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSubscribeCommunicationCallToTone", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-1.0", @@ -359834,7 +359834,7 @@ "OutputType": "IMicrosoftGraphSubscribeToToneOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgSubscribeGroupByMail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-subscribebymail?view=graph-rest-1.0", @@ -359897,7 +359897,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRun", "ApiReferenceLink": null, @@ -359929,7 +359929,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRunSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", "ApiReferenceLink": null, @@ -359961,7 +359961,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowTaskReport", "ApiReferenceLink": null, @@ -359976,7 +359976,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReportSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -359991,7 +359991,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgSupportedUserOutlookLanguage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlookuser-supportedlanguages?view=graph-rest-1.0", @@ -360031,7 +360031,7 @@ "OutputType": "IMicrosoftGraphLocaleInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgTargetDeviceAppManagementManagedAppPolicyApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0", @@ -360065,7 +360065,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0", @@ -360099,7 +360099,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0", @@ -360133,7 +360133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgTargetDeviceAppManagementTargetedManagedAppConfigurationApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappconfiguration-targetapps?view=graph-rest-1.0", @@ -360150,7 +360150,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgTerminateDeviceManagementPartner", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-devicemanagementpartner-terminate?view=graph-rest-1.0", @@ -360182,7 +360182,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgTimeUserOutlook", "ApiReferenceLink": null, @@ -360224,7 +360224,7 @@ "OutputType": "IMicrosoftGraphTimeZoneInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgTranslateUserExchangeId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-translateexchangeids?view=graph-rest-1.0", @@ -360282,7 +360282,7 @@ "OutputType": "IMicrosoftGraphConvertIdResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-1.0", @@ -360297,7 +360297,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnarchiveServiceAnnouncementMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unarchive?view=graph-rest-1.0", @@ -360312,7 +360312,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnarchiveTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-unarchive?view=graph-rest-1.0", @@ -360360,7 +360360,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-windowsautopilotdeviceidentity-unassignuserfromdevice?view=graph-rest-1.0", @@ -360392,7 +360392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnfavoriteServiceAnnouncementMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unfavorite?view=graph-rest-1.0", @@ -360407,7 +360407,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnfollowDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", @@ -360422,7 +360422,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnfollowDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", @@ -360437,7 +360437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnfollowGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", @@ -360452,7 +360452,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnfollowGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", @@ -360467,7 +360467,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnfollowUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", @@ -360482,7 +360482,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnfollowUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", @@ -360497,7 +360497,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnmuteCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-1.0", @@ -360531,7 +360531,7 @@ "OutputType": "IMicrosoftGraphUnmuteParticipantOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnpinEducationClassModule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-unpin?view=graph-rest-1.0", @@ -360563,7 +360563,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnsubmitEducationClassAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-1.0", @@ -360603,7 +360603,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnsubmitEducationMeAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-1.0", @@ -360618,7 +360618,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUnsubmitEducationUserAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-1.0", @@ -360633,7 +360633,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUploadIdentityApiConnectorClientCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-1.0", @@ -360650,7 +360650,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-1.0", @@ -360667,7 +360667,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-1.0", @@ -360684,7 +360684,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgUsageIdentityConditionalAccessAuthenticationStrengthPolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-1.0", @@ -360699,7 +360699,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgUsagePolicyAuthenticationStrengthPolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-1.0", @@ -360739,7 +360739,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgViewUserReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reminderview?view=graph-rest-1.0", @@ -360754,7 +360754,7 @@ "OutputType": "IMicrosoftGraphReminder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgBetaDriveListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", @@ -360771,7 +360771,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgBetaGroupDriveListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", @@ -360788,7 +360788,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgBetaGroupSiteContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", @@ -360805,7 +360805,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgBetaGroupSiteListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", @@ -360822,7 +360822,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgBetaShareListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", @@ -360839,7 +360839,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgBetaSiteContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", @@ -360873,7 +360873,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgBetaSiteListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", @@ -360890,7 +360890,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgBetaUserDriveListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", @@ -360907,7 +360907,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgDriveListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", @@ -360924,7 +360924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgGroupDriveListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", @@ -360941,7 +360941,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgGroupSiteContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", @@ -360958,7 +360958,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgGroupSiteListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", @@ -360975,7 +360975,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgShareListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", @@ -360992,7 +360992,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgSiteContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", @@ -361026,7 +361026,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgSiteListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", @@ -361043,7 +361043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Join-MgUserDriveListContentTypeWithHubSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", @@ -361060,7 +361060,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Lock-MgBetaDeviceManagementComanagedDeviceRemote", "ApiReferenceLink": null, @@ -361075,7 +361075,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Lock-MgBetaDeviceManagementManagedDeviceRemote", "ApiReferenceLink": null, @@ -361090,7 +361090,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Lock-MgBetaUserManagedDeviceRemote", "ApiReferenceLink": null, @@ -361105,7 +361105,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Lock-MgDeviceManagementManagedDeviceRemote", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-remotelock?view=graph-rest-1.0", @@ -361120,7 +361120,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Lock-MgUserManagedDeviceRemote", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-remotelock?view=graph-rest-1.0", @@ -361135,7 +361135,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-beta", @@ -361152,7 +361152,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaDeviceManagementComanagedDeviceToOu", "ApiReferenceLink": null, @@ -361184,7 +361184,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaDeviceManagementIntentToTemplate", "ApiReferenceLink": null, @@ -361201,7 +361201,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaDeviceManagementManagedDeviceToOu", "ApiReferenceLink": null, @@ -361233,7 +361233,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaEntitlementManagementAccessPackageToCatalog", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-movetocatalog?view=graph-rest-beta", @@ -361250,7 +361250,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaGroupPlannerPlanToContainer", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-movetocontainer?view=graph-rest-beta", @@ -361267,7 +361267,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaPlannerPlanToContainer", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-movetocontainer?view=graph-rest-beta", @@ -361284,7 +361284,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaUserMailFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-beta", @@ -361301,7 +361301,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaUserMailFolderChildFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-beta", @@ -361318,7 +361318,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-beta", @@ -361335,7 +361335,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-beta", @@ -361352,7 +361352,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaUserManagedDeviceToOu", "ApiReferenceLink": null, @@ -361369,7 +361369,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-beta", @@ -361386,7 +361386,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgBetaUserPlannerPlanToContainer", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-movetocontainer?view=graph-rest-beta", @@ -361403,7 +361403,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgCommunicationCall", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-1.0", @@ -361420,7 +361420,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgUserMailFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-1.0", @@ -361437,7 +361437,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgUserMailFolderChildFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-1.0", @@ -361454,7 +361454,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-1.0", @@ -361471,7 +361471,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-1.0", @@ -361488,7 +361488,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Move-MgUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-1.0", @@ -361505,7 +361505,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -361520,7 +361520,7 @@ "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -361537,7 +361537,7 @@ "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -361554,7 +361554,7 @@ "OutputType": "IMicrosoftGraphBrowserSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -361569,7 +361569,7 @@ "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAgreement", "ApiReferenceLink": null, @@ -361584,7 +361584,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAgreementAcceptance", "ApiReferenceLink": null, @@ -361601,7 +361601,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAgreementFile", "ApiReferenceLink": null, @@ -361618,7 +361618,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAgreementFileLocalization", "ApiReferenceLink": null, @@ -361635,7 +361635,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -361652,7 +361652,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAgreementFileVersion", "ApiReferenceLink": null, @@ -361669,7 +361669,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAppCatalogTeamApp", "ApiReferenceLink": null, @@ -361709,7 +361709,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -361751,7 +361751,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-1.0", @@ -361783,7 +361783,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationAppManagementPolicyByRef", "ApiReferenceLink": null, @@ -361825,7 +361825,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationExtensionProperty", "ApiReferenceLink": null, @@ -361867,7 +361867,7 @@ "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -361901,7 +361901,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationOwnerByRef", "ApiReferenceLink": null, @@ -361951,7 +361951,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -361968,7 +361968,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationSynchronizationJobOnDemand", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0", @@ -361985,7 +361985,7 @@ "OutputType": "IMicrosoftGraphStringKeyStringValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -362002,7 +362002,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -362019,7 +362019,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -362036,7 +362036,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationTokenIssuancePolicyByRef", "ApiReferenceLink": null, @@ -362094,7 +362094,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgApplicationTokenLifetimePolicyByRef", "ApiReferenceLink": null, @@ -362152,7 +362152,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAccessReview", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-create?view=graph-rest-beta", @@ -362184,7 +362184,7 @@ "OutputType": "IMicrosoftGraphAccessReview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAccessReviewDecision", "ApiReferenceLink": null, @@ -362201,7 +362201,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAccessReviewInstance", "ApiReferenceLink": null, @@ -362218,7 +362218,7 @@ "OutputType": "IMicrosoftGraphAccessReview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAccessReviewInstanceDecision", "ApiReferenceLink": null, @@ -362235,7 +362235,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAccessReviewInstanceMyDecision", "ApiReferenceLink": null, @@ -362252,7 +362252,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAccessReviewInstanceReviewer", "ApiReferenceLink": null, @@ -362269,7 +362269,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAccessReviewMyDecision", "ApiReferenceLink": null, @@ -362286,7 +362286,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAccessReviewReviewer", "ApiReferenceLink": null, @@ -362320,7 +362320,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -362335,7 +362335,7 @@ "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -362352,7 +362352,7 @@ "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -362369,7 +362369,7 @@ "OutputType": "IMicrosoftGraphBrowserSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAdministrativeUnit", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-post-administrativeunits?view=graph-rest-beta", @@ -362384,7 +362384,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -362401,7 +362401,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAdministrativeUnitMember", "ApiReferenceLink": null, @@ -362435,7 +362435,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAdministrativeUnitMemberByRef", "ApiReferenceLink": null, @@ -362469,7 +362469,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -362486,7 +362486,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -362501,7 +362501,7 @@ "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAgreement", "ApiReferenceLink": null, @@ -362516,7 +362516,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAgreementAcceptance", "ApiReferenceLink": null, @@ -362533,7 +362533,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAgreementFile", "ApiReferenceLink": null, @@ -362550,7 +362550,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAgreementFileLocalization", "ApiReferenceLink": null, @@ -362567,7 +362567,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -362584,7 +362584,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAgreementFileVersion", "ApiReferenceLink": null, @@ -362601,7 +362601,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAppCatalogTeamApp", "ApiReferenceLink": null, @@ -362641,7 +362641,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -362683,7 +362683,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaAppCatalogTeamAppDefinitionDashboardCard", "ApiReferenceLink": null, @@ -362700,7 +362700,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-beta", @@ -362732,7 +362732,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationAppManagementPolicyByRef", "ApiReferenceLink": null, @@ -362774,7 +362774,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationExtensionProperty", "ApiReferenceLink": null, @@ -362816,7 +362816,7 @@ "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -362850,7 +362850,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationOwnerByRef", "ApiReferenceLink": null, @@ -362900,7 +362900,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -362917,7 +362917,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationJobOnDemand", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-beta", @@ -362934,7 +362934,7 @@ "OutputType": "IMicrosoftGraphStringKeyStringValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -362951,7 +362951,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -362968,7 +362968,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -362985,7 +362985,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationTokenIssuancePolicyByRef", "ApiReferenceLink": null, @@ -363043,7 +363043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaApplicationTokenLifetimePolicyByRef", "ApiReferenceLink": null, @@ -363101,7 +363101,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBookingBusiness", "ApiReferenceLink": null, @@ -363118,7 +363118,7 @@ "OutputType": "IMicrosoftGraphBookingBusiness" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBookingBusinessAppointment", "ApiReferenceLink": null, @@ -363172,7 +363172,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -363193,7 +363193,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBookingBusinessCustomer", "ApiReferenceLink": null, @@ -363239,7 +363239,7 @@ "OutputType": "IMicrosoftGraphBookingCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -363285,7 +363285,7 @@ "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBookingBusinessService", "ApiReferenceLink": null, @@ -363323,7 +363323,7 @@ "OutputType": "IMicrosoftGraphBookingService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -363361,7 +363361,7 @@ "OutputType": "IMicrosoftGraphBookingStaffMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBookingCurrency", "ApiReferenceLink": null, @@ -363378,7 +363378,7 @@ "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBusinessFlowTemplate", "ApiReferenceLink": null, @@ -363393,7 +363393,7 @@ "OutputType": "IMicrosoftGraphBusinessFlowTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBusinessScenario", "ApiReferenceLink": null, @@ -363425,7 +363425,7 @@ "OutputType": "IMicrosoftGraphBusinessScenario" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", "ApiReferenceLink": null, @@ -363459,7 +363459,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaBusinessScenarioPlannerTask", "ApiReferenceLink": null, @@ -363476,7 +363476,7 @@ "OutputType": "IMicrosoftGraphBusinessScenarioTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-post?view=graph-rest-beta", @@ -363508,7 +363508,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatInstalledApp", "ApiReferenceLink": null, @@ -363614,7 +363614,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatMember", "ApiReferenceLink": null, @@ -363672,7 +363672,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatMessage", "ApiReferenceLink": null, @@ -363722,7 +363722,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatMessageHostedContent", "ApiReferenceLink": null, @@ -363739,7 +363739,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatMessageReply", "ApiReferenceLink": null, @@ -363756,7 +363756,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -363773,7 +363773,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatOperation", "ApiReferenceLink": null, @@ -363790,7 +363790,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatPermissionGrant", "ApiReferenceLink": null, @@ -363807,7 +363807,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatPinnedMessage", "ApiReferenceLink": null, @@ -363849,7 +363849,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaChatTab", "ApiReferenceLink": null, @@ -363931,7 +363931,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationCall", "ApiReferenceLink": null, @@ -363987,7 +363987,7 @@ "OutputType": "IMicrosoftGraphCall" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -364021,7 +364021,7 @@ "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -364038,7 +364038,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationCallOperation", "ApiReferenceLink": null, @@ -364055,7 +364055,7 @@ "OutputType": "IMicrosoftGraphCommsOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationCallParticipant", "ApiReferenceLink": null, @@ -364072,7 +364072,7 @@ "OutputType": "IMicrosoftGraphParticipant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationCallRecordParticipantV2", "ApiReferenceLink": null, @@ -364089,7 +364089,7 @@ "OutputType": "IMicrosoftGraphCallRecordsParticipant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -364106,7 +364106,7 @@ "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -364121,7 +364121,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -364138,7 +364138,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -364159,7 +364159,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -364176,7 +364176,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -364193,7 +364193,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -364210,7 +364210,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -364227,7 +364227,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaCommunicationPresence", "ApiReferenceLink": null, @@ -364242,7 +364242,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCase", "ApiReferenceLink": null, @@ -364274,7 +364274,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -364308,7 +364308,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -364342,7 +364342,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -364359,7 +364359,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -364393,7 +364393,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -364427,7 +364427,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryLegalHold" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -364461,7 +364461,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "ApiReferenceLink": null, @@ -364478,7 +364478,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -364512,7 +364512,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -364546,7 +364546,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -364563,7 +364563,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -364597,7 +364597,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -364631,7 +364631,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseSourceCollection", "ApiReferenceLink": null, @@ -364665,7 +364665,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySourceCollection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "ApiReferenceLink": null, @@ -364699,7 +364699,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaComplianceEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -364733,7 +364733,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaContact", "ApiReferenceLink": null, @@ -364748,7 +364748,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaContract", "ApiReferenceLink": null, @@ -364763,7 +364763,7 @@ "OutputType": "IMicrosoftGraphContract" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDataPolicyOperation", "ApiReferenceLink": null, @@ -364778,7 +364778,7 @@ "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-post-devices?view=graph-rest-beta", @@ -367482,7 +367482,7 @@ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceCommand", "ApiReferenceLink": null, @@ -367499,7 +367499,7 @@ "OutputType": "IMicrosoftGraphCommand" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceExtension", "ApiReferenceLink": null, @@ -367516,7 +367516,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "ApiReferenceLink": null, @@ -367531,7 +367531,7 @@ "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "ApiReferenceLink": null, @@ -367546,7 +367546,7 @@ "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfileToken", "ApiReferenceLink": null, @@ -367563,7 +367563,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", "ApiReferenceLink": null, @@ -367578,7 +367578,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", "ApiReferenceLink": null, @@ -367593,7 +367593,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidForWorkEnrollmentProfileToken", "ApiReferenceLink": null, @@ -367610,7 +367610,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingGooglePlayWebToken", "ApiReferenceLink": null, @@ -367625,7 +367625,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", "ApiReferenceLink": null, @@ -367640,7 +367640,7 @@ "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", "ApiReferenceLink": null, @@ -367671,7 +367671,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", "ApiReferenceLink": null, @@ -367686,7 +367686,7 @@ "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "ApiReferenceLink": null, @@ -367703,7 +367703,7 @@ "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAssignmentFilter", "ApiReferenceLink": null, @@ -367718,7 +367718,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -367733,7 +367733,7 @@ "OutputType": "IMicrosoftGraphAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAutopilotEvent", "ApiReferenceLink": null, @@ -367748,7 +367748,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", "ApiReferenceLink": null, @@ -367765,7 +367765,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementCartToClassAssociation", "ApiReferenceLink": null, @@ -367780,7 +367780,7 @@ "OutputType": "IMicrosoftGraphCartToClassAssociation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementCategory", "ApiReferenceLink": null, @@ -367795,7 +367795,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementCategorySettingDefinition", "ApiReferenceLink": null, @@ -367812,7 +367812,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -367844,7 +367844,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -367861,7 +367861,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -367878,7 +367878,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -367895,7 +367895,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -367912,7 +367912,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceLogCollectionRequestDownloadUrl", "ApiReferenceLink": null, @@ -367927,7 +367927,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -367944,7 +367944,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -367961,7 +367961,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -367978,7 +367978,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -367995,7 +367995,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagementEligibleDevice", "ApiReferenceLink": null, @@ -368027,7 +368027,7 @@ "OutputType": "IMicrosoftGraphComanagementEligibleDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -368059,7 +368059,7 @@ "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicy", "ApiReferenceLink": null, @@ -368074,7 +368074,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -368091,7 +368091,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -368108,7 +368108,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -368125,7 +368125,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicySetting", "ApiReferenceLink": null, @@ -368142,7 +368142,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementComplianceSetting", "ApiReferenceLink": null, @@ -368157,7 +368157,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicy", "ApiReferenceLink": null, @@ -368172,7 +368172,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyAssignment", "ApiReferenceLink": null, @@ -368189,7 +368189,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyCopy", "ApiReferenceLink": null, @@ -368206,7 +368206,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicySetting", "ApiReferenceLink": null, @@ -368223,7 +368223,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyTemplate", "ApiReferenceLink": null, @@ -368238,7 +368238,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", "ApiReferenceLink": null, @@ -368255,7 +368255,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", "ApiReferenceLink": null, @@ -368272,7 +368272,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationSetting", "ApiReferenceLink": null, @@ -368287,7 +368287,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDataSharingConsent", "ApiReferenceLink": null, @@ -368319,7 +368319,7 @@ "OutputType": "IMicrosoftGraphDataSharingConsent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDepOnboardingSetting", "ApiReferenceLink": null, @@ -368334,7 +368334,7 @@ "OutputType": "IMicrosoftGraphDepOnboardingSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDepOnboardingSettingEncryptionPublicKey", "ApiReferenceLink": null, @@ -368366,7 +368366,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", "ApiReferenceLink": null, @@ -368383,7 +368383,7 @@ "OutputType": "IMicrosoftGraphEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "ApiReferenceLink": null, @@ -368400,7 +368400,7 @@ "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDerivedCredential", "ApiReferenceLink": null, @@ -368415,7 +368415,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -368447,7 +368447,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -368479,7 +368479,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -368494,7 +368494,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -368511,7 +368511,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -368528,7 +368528,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -368545,7 +368545,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -368562,7 +368562,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -368579,7 +368579,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -368594,7 +368594,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -368611,7 +368611,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -368628,7 +368628,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -368643,7 +368643,7 @@ "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -368660,7 +368660,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationConflictSummary", "ApiReferenceLink": null, @@ -368675,7 +368675,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -368692,7 +368692,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -368709,7 +368709,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", "ApiReferenceLink": null, @@ -368726,7 +368726,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "ApiReferenceLink": null, @@ -368741,7 +368741,7 @@ "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationProfile", "ApiReferenceLink": null, @@ -368756,7 +368756,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", "ApiReferenceLink": null, @@ -368771,7 +368771,7 @@ "OutputType": "IMicrosoftGraphRestrictedAppsViolation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -368788,7 +368788,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -368820,7 +368820,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -368854,7 +368854,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceEnrollmentConfigurationEnrollmentNotificationConfiguration", "ApiReferenceLink": null, @@ -368886,7 +368886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceHealthScript", "ApiReferenceLink": null, @@ -368918,7 +368918,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceHealthScriptAssignment", "ApiReferenceLink": null, @@ -368952,7 +368952,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", "ApiReferenceLink": null, @@ -368986,7 +368986,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceShellScript", "ApiReferenceLink": null, @@ -369018,7 +369018,7 @@ "OutputType": "IMicrosoftGraphDeviceShellScript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceShellScriptAssignment", "ApiReferenceLink": null, @@ -369052,7 +369052,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", "ApiReferenceLink": null, @@ -369086,7 +369086,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", "ApiReferenceLink": null, @@ -369120,7 +369120,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceShellScriptUserRunState", "ApiReferenceLink": null, @@ -369154,7 +369154,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -369171,7 +369171,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementDomainJoinConnector", "ApiReferenceLink": null, @@ -369186,7 +369186,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementEmbeddedSimActivationCodePool", "ApiReferenceLink": null, @@ -369201,7 +369201,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", "ApiReferenceLink": null, @@ -369218,7 +369218,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "ApiReferenceLink": null, @@ -369235,7 +369235,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -369267,7 +369267,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementExchangeOnPremisePolicy", "ApiReferenceLink": null, @@ -369282,7 +369282,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyCategory", "ApiReferenceLink": null, @@ -369297,7 +369297,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyConfiguration", "ApiReferenceLink": null, @@ -369312,7 +369312,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", "ApiReferenceLink": null, @@ -369329,7 +369329,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", "ApiReferenceLink": null, @@ -369346,7 +369346,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "ApiReferenceLink": null, @@ -369363,7 +369363,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinition", "ApiReferenceLink": null, @@ -369378,7 +369378,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionFile", "ApiReferenceLink": null, @@ -369393,7 +369393,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -369410,7 +369410,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -369427,7 +369427,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", "ApiReferenceLink": null, @@ -369444,7 +369444,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -369461,7 +369461,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -369478,7 +369478,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyMigrationReport", "ApiReferenceLink": null, @@ -369493,7 +369493,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "ApiReferenceLink": null, @@ -369510,7 +369510,7 @@ "OutputType": "IMicrosoftGraphGroupPolicySettingMapping" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "ApiReferenceLink": null, @@ -369527,7 +369527,7 @@ "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyObjectFile", "ApiReferenceLink": null, @@ -369542,7 +369542,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyObjectFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", "ApiReferenceLink": null, @@ -369557,7 +369557,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "ApiReferenceLink": null, @@ -369574,7 +369574,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementImportedDeviceIdentity", "ApiReferenceLink": null, @@ -369589,7 +369589,7 @@ "OutputType": "IMicrosoftGraphImportedDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -369604,7 +369604,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntent", "ApiReferenceLink": null, @@ -369619,7 +369619,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentAssignment", "ApiReferenceLink": null, @@ -369636,7 +369636,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentCategory", "ApiReferenceLink": null, @@ -369653,7 +369653,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentCategorySetting", "ApiReferenceLink": null, @@ -369670,7 +369670,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentCategorySettingDefinition", "ApiReferenceLink": null, @@ -369687,7 +369687,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentCopy", "ApiReferenceLink": null, @@ -369704,7 +369704,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -369721,7 +369721,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentDeviceState", "ApiReferenceLink": null, @@ -369738,7 +369738,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentSetting", "ApiReferenceLink": null, @@ -369755,7 +369755,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentUserState", "ApiReferenceLink": null, @@ -369772,7 +369772,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntuneBrandingProfile", "ApiReferenceLink": null, @@ -369787,7 +369787,7 @@ "OutputType": "IMicrosoftGraphIntuneBrandingProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIntuneBrandingProfileAssignment", "ApiReferenceLink": null, @@ -369804,7 +369804,7 @@ "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -369819,7 +369819,7 @@ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", "ApiReferenceLink": null, @@ -369834,7 +369834,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "ApiReferenceLink": null, @@ -369851,7 +369851,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "ApiReferenceLink": null, @@ -369868,7 +369868,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -369900,7 +369900,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -369917,7 +369917,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceCleanupRule", "ApiReferenceLink": null, @@ -369932,7 +369932,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -369949,7 +369949,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -369966,7 +369966,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceEncryptionState", "ApiReferenceLink": null, @@ -369981,7 +369981,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -369998,7 +369998,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -370032,7 +370032,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl", "ApiReferenceLink": null, @@ -370047,7 +370047,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -370064,7 +370064,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -370081,7 +370081,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -370098,7 +370098,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceWindowsDefenderUpdateSignature", "ApiReferenceLink": null, @@ -370113,7 +370113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -370130,7 +370130,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelConfiguration", "ApiReferenceLink": null, @@ -370145,7 +370145,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", "ApiReferenceLink": null, @@ -370160,7 +370160,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "ApiReferenceLink": null, @@ -370175,7 +370175,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponseDownloadUrl", "ApiReferenceLink": null, @@ -370209,7 +370209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelSite", "ApiReferenceLink": null, @@ -370224,7 +370224,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "ApiReferenceLink": null, @@ -370241,7 +370241,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelServer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerLogCollectionRequest", "ApiReferenceLink": null, @@ -370258,7 +370258,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -370273,7 +370273,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -370307,7 +370307,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", "ApiReferenceLink": null, @@ -370355,7 +370355,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -370387,7 +370387,7 @@ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMonitoringAlertRecord", "ApiReferenceLink": null, @@ -370402,7 +370402,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementMonitoringAlertRule", "ApiReferenceLink": null, @@ -370417,7 +370417,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAlertRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementNdeConnector", "ApiReferenceLink": null, @@ -370432,7 +370432,7 @@ "OutputType": "IMicrosoftGraphNdesConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -370447,7 +370447,7 @@ "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -370464,7 +370464,7 @@ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementPartner", "ApiReferenceLink": null, @@ -370496,7 +370496,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementRemoteActionAudit", "ApiReferenceLink": null, @@ -370528,7 +370528,7 @@ "OutputType": "IMicrosoftGraphRemoteActionAudit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -370560,7 +370560,7 @@ "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementResourceAccessProfile", "ApiReferenceLink": null, @@ -370575,7 +370575,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementResourceAccessProfileAssignment", "ApiReferenceLink": null, @@ -370592,7 +370592,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -370624,7 +370624,7 @@ "OutputType": "IMicrosoftGraphResourceOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementReusableSetting", "ApiReferenceLink": null, @@ -370639,7 +370639,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -370671,7 +370671,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -370703,7 +370703,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -370737,7 +370737,7 @@ "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementRoleScopeTag", "ApiReferenceLink": null, @@ -370769,7 +370769,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementRoleScopeTagAssignment", "ApiReferenceLink": null, @@ -370786,7 +370786,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementScript", "ApiReferenceLink": null, @@ -370801,7 +370801,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementScriptAssignment", "ApiReferenceLink": null, @@ -370835,7 +370835,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementScriptDeviceRunState", "ApiReferenceLink": null, @@ -370869,7 +370869,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementScriptGroupAssignment", "ApiReferenceLink": null, @@ -370903,7 +370903,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementScriptUserRunState", "ApiReferenceLink": null, @@ -370937,7 +370937,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -370971,7 +370971,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementSettingDefinition", "ApiReferenceLink": null, @@ -370986,7 +370986,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -371001,7 +371001,7 @@ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplate", "ApiReferenceLink": null, @@ -371016,7 +371016,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateCategory", "ApiReferenceLink": null, @@ -371033,7 +371033,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -371050,7 +371050,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateCategorySettingDefinition", "ApiReferenceLink": null, @@ -371067,7 +371067,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateInstance", "ApiReferenceLink": null, @@ -371084,7 +371084,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableTo", "ApiReferenceLink": null, @@ -371101,7 +371101,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToCategory", "ApiReferenceLink": null, @@ -371118,7 +371118,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -371135,7 +371135,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", "ApiReferenceLink": null, @@ -371152,7 +371152,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToInstance", "ApiReferenceLink": null, @@ -371169,7 +371169,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToSetting", "ApiReferenceLink": null, @@ -371186,7 +371186,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateSetting", "ApiReferenceLink": null, @@ -371203,7 +371203,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -371218,7 +371218,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -371235,7 +371235,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -371252,7 +371252,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTermAndConditionGroupAssignment", "ApiReferenceLink": null, @@ -371269,7 +371269,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -371284,7 +371284,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", "ApiReferenceLink": null, @@ -371316,7 +371316,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", "ApiReferenceLink": null, @@ -371331,7 +371331,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", "ApiReferenceLink": null, @@ -371363,7 +371363,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -371395,7 +371395,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "ApiReferenceLink": null, @@ -371427,7 +371427,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -371459,7 +371459,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -371491,7 +371491,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -371523,7 +371523,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -371555,7 +371555,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -371587,7 +371587,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -371619,7 +371619,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -371651,7 +371651,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -371666,7 +371666,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -371698,7 +371698,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "ApiReferenceLink": null, @@ -371730,7 +371730,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "ApiReferenceLink": null, @@ -371762,7 +371762,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "ApiReferenceLink": null, @@ -371794,7 +371794,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "ApiReferenceLink": null, @@ -371826,7 +371826,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "ApiReferenceLink": null, @@ -371858,7 +371858,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "ApiReferenceLink": null, @@ -371890,7 +371890,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -371905,7 +371905,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -371922,7 +371922,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "ApiReferenceLink": null, @@ -371954,7 +371954,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -371986,7 +371986,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", "ApiReferenceLink": null, @@ -372018,7 +372018,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -372050,7 +372050,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -372082,7 +372082,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -372114,7 +372114,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -372146,7 +372146,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", "ApiReferenceLink": null, @@ -372161,7 +372161,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "ApiReferenceLink": null, @@ -372193,7 +372193,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", "ApiReferenceLink": null, @@ -372225,7 +372225,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -372257,7 +372257,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -372289,7 +372289,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "ApiReferenceLink": null, @@ -372321,7 +372321,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", "ApiReferenceLink": null, @@ -372353,7 +372353,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", "ApiReferenceLink": null, @@ -372385,7 +372385,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -372417,7 +372417,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -372449,7 +372449,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -372483,7 +372483,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -372515,7 +372515,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementUserPfxCertificate", "ApiReferenceLink": null, @@ -372530,7 +372530,7 @@ "OutputType": "IMicrosoftGraphUserPfxCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointBulkAction", "ApiReferenceLink": null, @@ -372545,7 +372545,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointCloudPcSnapshot", "ApiReferenceLink": null, @@ -372560,7 +372560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -372575,7 +372575,7 @@ "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", "ApiReferenceLink": null, @@ -372590,7 +372590,7 @@ "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", "ApiReferenceLink": null, @@ -372605,7 +372605,7 @@ "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -372620,7 +372620,7 @@ "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -372635,7 +372635,7 @@ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -372650,7 +372650,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -372667,7 +372667,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointReportExportJob", "ApiReferenceLink": null, @@ -372682,7 +372682,7 @@ "OutputType": "IMicrosoftGraphCloudPcExportJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointServicePlan", "ApiReferenceLink": null, @@ -372697,7 +372697,7 @@ "OutputType": "IMicrosoftGraphCloudPcServicePlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", "ApiReferenceLink": null, @@ -372712,7 +372712,7 @@ "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointSnapshot", "ApiReferenceLink": null, @@ -372727,7 +372727,7 @@ "OutputType": "IMicrosoftGraphCloudPcSnapshot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointSupportedRegion", "ApiReferenceLink": null, @@ -372742,7 +372742,7 @@ "OutputType": "IMicrosoftGraphCloudPcSupportedRegion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -372757,7 +372757,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -372774,7 +372774,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", "ApiReferenceLink": null, @@ -372789,7 +372789,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", "ApiReferenceLink": null, @@ -372806,7 +372806,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", "ApiReferenceLink": null, @@ -372823,7 +372823,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -372838,7 +372838,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsFeatureUpdateProfile", "ApiReferenceLink": null, @@ -372853,7 +372853,7 @@ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", "ApiReferenceLink": null, @@ -372870,7 +372870,7 @@ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -372885,7 +372885,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -372900,7 +372900,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -372932,7 +372932,7 @@ "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -372966,7 +372966,7 @@ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsQualityUpdateProfile", "ApiReferenceLink": null, @@ -372981,7 +372981,7 @@ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", "ApiReferenceLink": null, @@ -372998,7 +372998,7 @@ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceRegisteredOwnerByRef", "ApiReferenceLink": null, @@ -373015,7 +373015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceRegisteredUserByRef", "ApiReferenceLink": null, @@ -373032,7 +373032,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDeviceUsageRights", "ApiReferenceLink": null, @@ -373049,7 +373049,7 @@ "OutputType": "IMicrosoftGraphUsageRight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -373064,7 +373064,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -373081,7 +373081,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryAdministrativeUnitMember", "ApiReferenceLink": null, @@ -373139,7 +373139,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryAdministrativeUnitMemberByRef", "ApiReferenceLink": null, @@ -373197,7 +373197,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -373214,7 +373214,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryAttributeSet", "ApiReferenceLink": null, @@ -373229,7 +373229,7 @@ "OutputType": "IMicrosoftGraphAttributeSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", "ApiReferenceLink": null, @@ -373261,7 +373261,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", "ApiReferenceLink": null, @@ -373295,7 +373295,7 @@ "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -373310,7 +373310,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -373327,7 +373327,7 @@ "OutputType": "IMicrosoftGraphAllowedValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryDeviceLocalCredential", "ApiReferenceLink": null, @@ -373342,7 +373342,7 @@ "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryExternalUserProfile", "ApiReferenceLink": null, @@ -373357,7 +373357,7 @@ "OutputType": "IMicrosoftGraphExternalUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -373372,7 +373372,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryFeatureRolloutPolicyApplyTo", "ApiReferenceLink": null, @@ -373389,7 +373389,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryFeatureRolloutPolicyApplyToByRef", "ApiReferenceLink": null, @@ -373406,7 +373406,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -373421,7 +373421,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryImpactedResource", "ApiReferenceLink": null, @@ -373436,7 +373436,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryInboundSharedUserProfile", "ApiReferenceLink": null, @@ -373451,7 +373451,7 @@ "OutputType": "IMicrosoftGraphInboundSharedUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryObject", "ApiReferenceLink": null, @@ -373466,7 +373466,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -373481,7 +373481,7 @@ "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryOutboundSharedUserProfile", "ApiReferenceLink": null, @@ -373496,7 +373496,7 @@ "OutputType": "IMicrosoftGraphOutboundSharedUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryOutboundSharedUserProfileTenant", "ApiReferenceLink": null, @@ -373513,7 +373513,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryPendingExternalUserProfile", "ApiReferenceLink": null, @@ -373528,7 +373528,7 @@ "OutputType": "IMicrosoftGraphPendingExternalUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryRecommendation", "ApiReferenceLink": null, @@ -373543,7 +373543,7 @@ "OutputType": "IMicrosoftGraphRecommendation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryRecommendationImpactedResource", "ApiReferenceLink": null, @@ -373560,7 +373560,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-post-directoryroles?view=graph-rest-beta", @@ -373575,7 +373575,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryRoleMemberByRef", "ApiReferenceLink": null, @@ -373592,7 +373592,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -373609,7 +373609,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectoryRoleTemplate", "ApiReferenceLink": null, @@ -373624,7 +373624,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectorySetting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-post-settings?view=graph-rest-beta", @@ -373639,7 +373639,7 @@ "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectorySettingTemplate", "ApiReferenceLink": null, @@ -373654,7 +373654,7 @@ "OutputType": "IMicrosoftGraphDirectorySettingTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectorySharedEmailDomain", "ApiReferenceLink": null, @@ -373669,7 +373669,7 @@ "OutputType": "IMicrosoftGraphSharedEmailDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDirectorySubscription", "ApiReferenceLink": null, @@ -373684,7 +373684,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-post-domains?view=graph-rest-beta", @@ -373699,7 +373699,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDomainFederationConfiguration", "ApiReferenceLink": null, @@ -373716,7 +373716,7 @@ "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -373733,7 +373733,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDomainSharedEmailDomainInvitation", "ApiReferenceLink": null, @@ -373750,7 +373750,7 @@ "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -373767,7 +373767,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDrive", "ApiReferenceLink": null, @@ -373782,7 +373782,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveBundle", "ApiReferenceLink": null, @@ -373799,7 +373799,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItem", "ApiReferenceLink": null, @@ -373816,7 +373816,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -373833,7 +373833,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemChild", "ApiReferenceLink": null, @@ -373875,7 +373875,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", @@ -373917,7 +373917,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -373934,7 +373934,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -373951,7 +373951,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemListItemVersion", "ApiReferenceLink": null, @@ -373968,7 +373968,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemPermission", "ApiReferenceLink": null, @@ -373985,7 +373985,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemSubscription", "ApiReferenceLink": null, @@ -374002,7 +374002,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemThumbnail", "ApiReferenceLink": null, @@ -374019,7 +374019,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemUploadSession", "ApiReferenceLink": null, @@ -374061,7 +374061,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveItemVersion", "ApiReferenceLink": null, @@ -374078,7 +374078,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListColumn", "ApiReferenceLink": null, @@ -374095,7 +374095,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListContentType", "ApiReferenceLink": null, @@ -374112,7 +374112,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -374129,7 +374129,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -374146,7 +374146,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListItem", "ApiReferenceLink": null, @@ -374163,7 +374163,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -374180,7 +374180,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -374197,7 +374197,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListItemVersion", "ApiReferenceLink": null, @@ -374214,7 +374214,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListOperation", "ApiReferenceLink": null, @@ -374231,7 +374231,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveListSubscription", "ApiReferenceLink": null, @@ -374248,7 +374248,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -374265,7 +374265,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootChild", "ApiReferenceLink": null, @@ -374282,7 +374282,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", @@ -374299,7 +374299,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -374316,7 +374316,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -374333,7 +374333,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootListItemVersion", "ApiReferenceLink": null, @@ -374350,7 +374350,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootPermission", "ApiReferenceLink": null, @@ -374367,7 +374367,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootSubscription", "ApiReferenceLink": null, @@ -374384,7 +374384,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootThumbnail", "ApiReferenceLink": null, @@ -374401,7 +374401,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootUploadSession", "ApiReferenceLink": null, @@ -374418,7 +374418,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaDriveRootVersion", "ApiReferenceLink": null, @@ -374435,7 +374435,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClass", "ApiReferenceLink": null, @@ -374450,7 +374450,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignment", "ApiReferenceLink": null, @@ -374484,7 +374484,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -374522,7 +374522,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -374556,7 +374556,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -374590,7 +374590,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -374607,7 +374607,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -374624,7 +374624,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSettingGradingScheme", "ApiReferenceLink": null, @@ -374658,7 +374658,7 @@ "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -374675,7 +374675,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -374709,7 +374709,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -374743,7 +374743,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -374760,7 +374760,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -374777,7 +374777,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -374794,7 +374794,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassMemberByRef", "ApiReferenceLink": null, @@ -374828,7 +374828,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassModule", "ApiReferenceLink": null, @@ -374862,7 +374862,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassModuleResource", "ApiReferenceLink": null, @@ -374896,7 +374896,7 @@ "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationClassTeacherByRef", "ApiReferenceLink": null, @@ -374913,7 +374913,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignment", "ApiReferenceLink": null, @@ -374928,7 +374928,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentCategory", "ApiReferenceLink": null, @@ -374945,7 +374945,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -374962,7 +374962,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -374979,7 +374979,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -374996,7 +374996,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -375013,7 +375013,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -375030,7 +375030,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -375047,7 +375047,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -375064,7 +375064,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -375081,7 +375081,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -375098,7 +375098,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationMeRubric", "ApiReferenceLink": null, @@ -375130,7 +375130,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationSchool", "ApiReferenceLink": null, @@ -375145,7 +375145,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationSchoolClassByRef", "ApiReferenceLink": null, @@ -375162,7 +375162,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationSchoolUserByRef", "ApiReferenceLink": null, @@ -375179,7 +375179,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationSynchronizationProfile", "ApiReferenceLink": null, @@ -375194,7 +375194,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationSynchronizationProfileError", "ApiReferenceLink": null, @@ -375211,7 +375211,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUser", "ApiReferenceLink": null, @@ -375226,7 +375226,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignment", "ApiReferenceLink": null, @@ -375243,7 +375243,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentCategory", "ApiReferenceLink": null, @@ -375260,7 +375260,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -375277,7 +375277,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -375294,7 +375294,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -375311,7 +375311,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -375328,7 +375328,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -375345,7 +375345,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -375362,7 +375362,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -375379,7 +375379,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -375396,7 +375396,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -375413,7 +375413,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEducationUserRubric", "ApiReferenceLink": null, @@ -375430,7 +375430,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -375445,7 +375445,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -375460,7 +375460,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", "ApiReferenceLink": null, @@ -375477,7 +375477,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionHandler" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -375494,7 +375494,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageAssignmentRequest", "ApiReferenceLink": null, @@ -375509,7 +375509,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageCatalog", "ApiReferenceLink": null, @@ -375524,7 +375524,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", "ApiReferenceLink": null, @@ -375558,7 +375558,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", "ApiReferenceLink": null, @@ -375575,7 +375575,7 @@ "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "ApiReferenceLink": null, @@ -375592,7 +375592,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageIncompatibleGroupByRef", "ApiReferenceLink": null, @@ -375609,7 +375609,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageResourceRequest", "ApiReferenceLink": null, @@ -375624,7 +375624,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageResourceRoleScope", "ApiReferenceLink": null, @@ -375641,7 +375641,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementAssignmentRequest", "ApiReferenceLink": null, @@ -375656,7 +375656,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -375671,7 +375671,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorByRef", "ApiReferenceLink": null, @@ -375688,7 +375688,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorByRef", "ApiReferenceLink": null, @@ -375705,7 +375705,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaEntitlementManagementSubject", "ApiReferenceLink": null, @@ -375720,7 +375720,7 @@ "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalAuthorizationSystem", "ApiReferenceLink": null, @@ -375735,7 +375735,7 @@ "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalConnection", "ApiReferenceLink": null, @@ -375767,7 +375767,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalConnectionGroup", "ApiReferenceLink": null, @@ -375801,7 +375801,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -375835,7 +375835,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalConnectionItem", "ApiReferenceLink": null, @@ -375852,7 +375852,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -375869,7 +375869,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalConnectionOperation", "ApiReferenceLink": null, @@ -375886,7 +375886,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalIndustryDataConnector", "ApiReferenceLink": null, @@ -375901,7 +375901,7 @@ "OutputType": "IMicrosoftGraphIndustryDataConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalIndustryDataInboundFlow", "ApiReferenceLink": null, @@ -375916,7 +375916,7 @@ "OutputType": "IMicrosoftGraphIndustryDataInboundFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalIndustryDataOperation", "ApiReferenceLink": null, @@ -375931,7 +375931,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", "ApiReferenceLink": null, @@ -375946,7 +375946,7 @@ "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", "ApiReferenceLink": null, @@ -375963,7 +375963,7 @@ "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalIndustryDataReferenceDefinition", "ApiReferenceLink": null, @@ -375978,7 +375978,7 @@ "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalIndustryDataRoleGroup", "ApiReferenceLink": null, @@ -375993,7 +375993,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRoleGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalIndustryDataSourceSystem", "ApiReferenceLink": null, @@ -376008,7 +376008,7 @@ "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaExternalIndustryDataYear", "ApiReferenceLink": null, @@ -376023,7 +376023,7 @@ "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyCountryRegion", "ApiReferenceLink": null, @@ -376040,7 +376040,7 @@ "OutputType": "IMicrosoftGraphCountryRegion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyCurrency", "ApiReferenceLink": null, @@ -376057,7 +376057,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomer", "ApiReferenceLink": null, @@ -376074,7 +376074,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPayment", "ApiReferenceLink": null, @@ -376091,7 +376091,7 @@ "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -376108,7 +376108,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPaymentJournal", "ApiReferenceLink": null, @@ -376125,7 +376125,7 @@ "OutputType": "IMicrosoftGraphCustomerPaymentJournal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", "ApiReferenceLink": null, @@ -376142,7 +376142,7 @@ "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -376159,7 +376159,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPicture", "ApiReferenceLink": null, @@ -376176,7 +376176,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyEmployee", "ApiReferenceLink": null, @@ -376193,7 +376193,7 @@ "OutputType": "IMicrosoftGraphEmployee" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyEmployeePicture", "ApiReferenceLink": null, @@ -376210,7 +376210,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyItem", "ApiReferenceLink": null, @@ -376227,7 +376227,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyItemCategory", "ApiReferenceLink": null, @@ -376244,7 +376244,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyItemPicture", "ApiReferenceLink": null, @@ -376261,7 +376261,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyJournal", "ApiReferenceLink": null, @@ -376278,7 +376278,7 @@ "OutputType": "IMicrosoftGraphJournal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyJournalLine", "ApiReferenceLink": null, @@ -376299,7 +376299,7 @@ "OutputType": "IMicrosoftGraphJournalLine" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyPaymentMethod", "ApiReferenceLink": null, @@ -376316,7 +376316,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyPaymentTerm", "ApiReferenceLink": null, @@ -376333,7 +376333,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyPicture", "ApiReferenceLink": null, @@ -376350,7 +376350,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -376371,7 +376371,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", "ApiReferenceLink": null, @@ -376388,7 +376388,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", "ApiReferenceLink": null, @@ -376405,7 +376405,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -376422,7 +376422,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -376439,7 +376439,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleInvoiceCustomerPicture", "ApiReferenceLink": null, @@ -376456,7 +376456,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -376477,7 +376477,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleOrderCustomerPicture", "ApiReferenceLink": null, @@ -376494,7 +376494,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleOrderLineItemPicture", "ApiReferenceLink": null, @@ -376515,7 +376515,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleQuoteCustomerPicture", "ApiReferenceLink": null, @@ -376532,7 +376532,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleQuoteInvoice", "ApiReferenceLink": null, @@ -376547,7 +376547,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleQuoteLineItemPicture", "ApiReferenceLink": null, @@ -376568,7 +376568,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyShipmentMethod", "ApiReferenceLink": null, @@ -376585,7 +376585,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyTaxArea", "ApiReferenceLink": null, @@ -376602,7 +376602,7 @@ "OutputType": "IMicrosoftGraphTaxArea" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyTaxGroup", "ApiReferenceLink": null, @@ -376619,7 +376619,7 @@ "OutputType": "IMicrosoftGraphTaxGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyUnitOfMeasure", "ApiReferenceLink": null, @@ -376636,7 +376636,7 @@ "OutputType": "IMicrosoftGraphUnitOfMeasure" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyVendor", "ApiReferenceLink": null, @@ -376653,7 +376653,7 @@ "OutputType": "IMicrosoftGraphVendor" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaFinancialCompanyVendorPicture", "ApiReferenceLink": null, @@ -376670,7 +376670,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-beta", @@ -376710,7 +376710,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupAcceptedSenderByRef", "ApiReferenceLink": null, @@ -376727,7 +376727,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -376744,7 +376744,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupCalendarEvent", "ApiReferenceLink": null, @@ -376761,7 +376761,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupCalendarPermission", "ApiReferenceLink": null, @@ -376778,7 +376778,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversation", "ApiReferenceLink": null, @@ -376812,7 +376812,7 @@ "OutputType": "IMicrosoftGraphConversation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversationThread", "ApiReferenceLink": null, @@ -376846,7 +376846,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostAttachment", "ApiReferenceLink": null, @@ -376863,7 +376863,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -376880,7 +376880,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -376897,7 +376897,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -376914,7 +376914,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostInReplyToAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -376931,7 +376931,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -376948,7 +376948,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostInReplyToMention", "ApiReferenceLink": null, @@ -376965,7 +376965,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostMention", "ApiReferenceLink": null, @@ -376982,7 +376982,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDrive", "ApiReferenceLink": null, @@ -376999,7 +376999,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveBundle", "ApiReferenceLink": null, @@ -377016,7 +377016,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItem", "ApiReferenceLink": null, @@ -377033,7 +377033,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -377050,7 +377050,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemChild", "ApiReferenceLink": null, @@ -377067,7 +377067,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", @@ -377084,7 +377084,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -377101,7 +377101,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -377118,7 +377118,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -377135,7 +377135,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemPermission", "ApiReferenceLink": null, @@ -377152,7 +377152,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -377169,7 +377169,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -377186,7 +377186,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemUploadSession", "ApiReferenceLink": null, @@ -377203,7 +377203,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveItemVersion", "ApiReferenceLink": null, @@ -377220,7 +377220,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListColumn", "ApiReferenceLink": null, @@ -377237,7 +377237,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListContentType", "ApiReferenceLink": null, @@ -377254,7 +377254,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -377271,7 +377271,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -377288,7 +377288,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListItem", "ApiReferenceLink": null, @@ -377305,7 +377305,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -377322,7 +377322,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -377339,7 +377339,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -377356,7 +377356,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListOperation", "ApiReferenceLink": null, @@ -377373,7 +377373,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveListSubscription", "ApiReferenceLink": null, @@ -377390,7 +377390,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -377407,7 +377407,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootChild", "ApiReferenceLink": null, @@ -377424,7 +377424,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", @@ -377441,7 +377441,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -377458,7 +377458,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -377475,7 +377475,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -377492,7 +377492,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootPermission", "ApiReferenceLink": null, @@ -377509,7 +377509,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -377526,7 +377526,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -377543,7 +377543,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootUploadSession", "ApiReferenceLink": null, @@ -377560,7 +377560,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupDriveRootVersion", "ApiReferenceLink": null, @@ -377577,7 +377577,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEndpoint", "ApiReferenceLink": null, @@ -377594,7 +377594,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEvent", "ApiReferenceLink": null, @@ -377611,7 +377611,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventAttachment", "ApiReferenceLink": null, @@ -377628,7 +377628,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -377645,7 +377645,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -377662,7 +377662,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventExceptionOccurrenceInstanceAttachment", "ApiReferenceLink": null, @@ -377679,7 +377679,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -377696,7 +377696,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventExtension", "ApiReferenceLink": null, @@ -377713,7 +377713,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventInstanceAttachment", "ApiReferenceLink": null, @@ -377730,7 +377730,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventInstanceExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -377747,7 +377747,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -377764,7 +377764,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -377781,7 +377781,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupExtension", "ApiReferenceLink": null, @@ -377798,7 +377798,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-post-grouplifecyclepolicies?view=graph-rest-beta", @@ -377817,7 +377817,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupMemberByRef", "ApiReferenceLink": null, @@ -377834,7 +377834,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -377876,7 +377876,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupOnenoteNotebookSection", "ApiReferenceLink": null, @@ -377918,7 +377918,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -377960,7 +377960,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupOnenotePage", "ApiReferenceLink": null, @@ -378002,7 +378002,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupOnenoteSection", "ApiReferenceLink": null, @@ -378019,7 +378019,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -378036,7 +378036,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -378078,7 +378078,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupOnenoteSectionPage", "ApiReferenceLink": null, @@ -378120,7 +378120,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupOwnerByRef", "ApiReferenceLink": null, @@ -378154,7 +378154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupPermissionGrant", "ApiReferenceLink": null, @@ -378171,7 +378171,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupRejectedSenderByRef", "ApiReferenceLink": null, @@ -378188,7 +378188,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSetting", "ApiReferenceLink": null, @@ -378205,7 +378205,7 @@ "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -378222,7 +378222,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -378239,7 +378239,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteColumn", "ApiReferenceLink": null, @@ -378256,7 +378256,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteContentType", "ApiReferenceLink": null, @@ -378273,7 +378273,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -378290,7 +378290,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -378307,7 +378307,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathColumn", "ApiReferenceLink": null, @@ -378328,7 +378328,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathContentType", "ApiReferenceLink": null, @@ -378349,7 +378349,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathList", "ApiReferenceLink": null, @@ -378370,7 +378370,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathOperation", "ApiReferenceLink": null, @@ -378391,7 +378391,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathPage", "ApiReferenceLink": null, @@ -378412,7 +378412,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathPermission", "ApiReferenceLink": null, @@ -378433,7 +378433,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -378450,7 +378450,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -378467,7 +378467,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -378484,7 +378484,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -378501,7 +378501,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -378518,7 +378518,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -378535,7 +378535,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteList", "ApiReferenceLink": null, @@ -378552,7 +378552,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListActivity", "ApiReferenceLink": null, @@ -378569,7 +378569,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListColumn", "ApiReferenceLink": null, @@ -378586,7 +378586,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListContentType", "ApiReferenceLink": null, @@ -378603,7 +378603,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -378620,7 +378620,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -378637,7 +378637,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListItem", "ApiReferenceLink": null, @@ -378654,7 +378654,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListItemActivity", "ApiReferenceLink": null, @@ -378671,7 +378671,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -378688,7 +378688,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -378705,7 +378705,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -378722,7 +378722,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListOperation", "ApiReferenceLink": null, @@ -378739,7 +378739,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteListSubscription", "ApiReferenceLink": null, @@ -378756,7 +378756,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -378773,7 +378773,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -378790,7 +378790,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -378807,7 +378807,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -378824,7 +378824,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -378841,7 +378841,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -378858,7 +378858,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -378875,7 +378875,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -378892,7 +378892,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -378909,7 +378909,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -378926,7 +378926,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -378943,7 +378943,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -378960,7 +378960,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -378977,7 +378977,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -378994,7 +378994,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteOperation", "ApiReferenceLink": null, @@ -379011,7 +379011,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSitePage", "ApiReferenceLink": null, @@ -379028,7 +379028,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -379045,7 +379045,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -379062,7 +379062,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -379079,7 +379079,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -379096,7 +379096,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -379113,7 +379113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSitePermission", "ApiReferenceLink": null, @@ -379130,7 +379130,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteRecycleBinItem", "ApiReferenceLink": null, @@ -379147,7 +379147,7 @@ "OutputType": "IMicrosoftGraphRecycleBinItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -379164,7 +379164,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -379181,7 +379181,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -379202,7 +379202,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -379223,7 +379223,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -379240,7 +379240,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -379257,7 +379257,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -379274,7 +379274,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -379291,7 +379291,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -379308,7 +379308,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -379325,7 +379325,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -379346,7 +379346,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -379367,7 +379367,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -379384,7 +379384,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -379405,7 +379405,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -379426,7 +379426,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -379443,7 +379443,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -379460,7 +379460,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -379477,7 +379477,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -379494,7 +379494,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -379511,7 +379511,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -379528,7 +379528,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -379545,7 +379545,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -379562,7 +379562,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -379579,7 +379579,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -379596,7 +379596,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamChannel", "ApiReferenceLink": null, @@ -379613,7 +379613,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMember", "ApiReferenceLink": null, @@ -379630,7 +379630,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -379647,7 +379647,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -379664,7 +379664,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -379681,7 +379681,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -379698,7 +379698,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -379715,7 +379715,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamChannelTab", "ApiReferenceLink": null, @@ -379732,7 +379732,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamInstalledApp", "ApiReferenceLink": null, @@ -379749,7 +379749,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamMember", "ApiReferenceLink": null, @@ -379766,7 +379766,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamOperation", "ApiReferenceLink": null, @@ -379783,7 +379783,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -379800,7 +379800,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -379817,7 +379817,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -379834,7 +379834,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -379851,7 +379851,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -379868,7 +379868,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -379885,7 +379885,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -379902,7 +379902,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -379919,7 +379919,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleDayNote", "ApiReferenceLink": null, @@ -379936,7 +379936,7 @@ "OutputType": "IMicrosoftGraphDayNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -379953,7 +379953,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -379970,7 +379970,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -379987,7 +379987,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -380004,7 +380004,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleShift", "ApiReferenceLink": null, @@ -380021,7 +380021,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -380038,7 +380038,7 @@ "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -380055,7 +380055,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -380072,7 +380072,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -380089,7 +380089,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -380106,7 +380106,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -380123,7 +380123,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamTag", "ApiReferenceLink": null, @@ -380140,7 +380140,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupTeamTagMember", "ApiReferenceLink": null, @@ -380157,7 +380157,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupThread", "ApiReferenceLink": null, @@ -380191,7 +380191,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupThreadPostAttachment", "ApiReferenceLink": null, @@ -380208,7 +380208,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupThreadPostAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -380225,7 +380225,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupThreadPostExtension", "ApiReferenceLink": null, @@ -380242,7 +380242,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -380259,7 +380259,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupThreadPostInReplyToAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -380276,7 +380276,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -380293,7 +380293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupThreadPostInReplyToMention", "ApiReferenceLink": null, @@ -380310,7 +380310,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaGroupThreadPostMention", "ApiReferenceLink": null, @@ -380327,7 +380327,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityApiConnector", "ApiReferenceLink": null, @@ -380342,7 +380342,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlow", "ApiReferenceLink": null, @@ -380357,7 +380357,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventsFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -380374,7 +380374,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef", "ApiReferenceLink": null, @@ -380391,7 +380391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef", "ApiReferenceLink": null, @@ -380408,7 +380408,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -380425,7 +380425,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -380440,7 +380440,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlow", "ApiReferenceLink": null, @@ -380455,7 +380455,7 @@ "OutputType": "IMicrosoftGraphB2CIdentityUserFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowIdentityProviderByRef", "ApiReferenceLink": null, @@ -380472,7 +380472,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowLanguage", "ApiReferenceLink": null, @@ -380489,7 +380489,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -380506,7 +380506,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -380523,7 +380523,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -380540,7 +380540,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -380555,7 +380555,7 @@ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowIdentityProviderByRef", "ApiReferenceLink": null, @@ -380572,7 +380572,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -380589,7 +380589,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -380606,7 +380606,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -380623,7 +380623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -380640,7 +380640,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -380655,7 +380655,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", "ApiReferenceLink": null, @@ -380670,7 +380670,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -380685,7 +380685,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -380704,7 +380704,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -380736,7 +380736,7 @@ "OutputType": "IMicrosoftGraphNamedLocation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -380776,7 +380776,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -380791,7 +380791,7 @@ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecision", "ApiReferenceLink": null, @@ -380806,7 +380806,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInsight", "ApiReferenceLink": null, @@ -380823,7 +380823,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -380840,7 +380840,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", "ApiReferenceLink": null, @@ -380857,7 +380857,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -380874,7 +380874,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", "ApiReferenceLink": null, @@ -380891,7 +380891,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", "ApiReferenceLink": null, @@ -380908,7 +380908,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -380925,7 +380925,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -380940,7 +380940,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -380957,7 +380957,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -380974,7 +380974,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -380991,7 +380991,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -381008,7 +381008,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -381025,7 +381025,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -381042,7 +381042,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -381059,7 +381059,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -381074,7 +381074,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -381091,7 +381091,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewhistoryinstance-generatedownloaduri?view=graph-rest-beta", @@ -381106,7 +381106,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -381121,7 +381121,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -381138,7 +381138,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", "ApiReferenceLink": null, @@ -381155,7 +381155,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -381170,7 +381170,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -381185,7 +381185,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowNewVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-beta", @@ -381202,7 +381202,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -381219,7 +381219,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowNewVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-beta", @@ -381236,7 +381236,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -381253,7 +381253,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -381270,7 +381270,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticAwFinding", "ApiReferenceLink": null, @@ -381285,7 +381285,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -381300,7 +381300,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", "ApiReferenceLink": null, @@ -381315,7 +381315,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -381330,7 +381330,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", "ApiReferenceLink": null, @@ -381345,7 +381345,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -381360,7 +381360,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", "ApiReferenceLink": null, @@ -381375,7 +381375,7 @@ "OutputType": "IMicrosoftGraphPermissionsRequestChange" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", "ApiReferenceLink": null, @@ -381390,7 +381390,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", "ApiReferenceLink": null, @@ -381407,7 +381407,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionManagementScheduledPermissionRequest", "ApiReferenceLink": null, @@ -381422,7 +381422,7 @@ "OutputType": "IMicrosoftGraphScheduledPermissionsRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -381437,7 +381437,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", "ApiReferenceLink": null, @@ -381454,7 +381454,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -381469,7 +381469,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -381484,7 +381484,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -381516,7 +381516,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -381531,7 +381531,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -381546,7 +381546,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -381578,7 +381578,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlert", "ApiReferenceLink": null, @@ -381593,7 +381593,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", "ApiReferenceLink": null, @@ -381608,7 +381608,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlertDefinition", "ApiReferenceLink": null, @@ -381623,7 +381623,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlertIncident", "ApiReferenceLink": null, @@ -381640,7 +381640,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlertOperation", "ApiReferenceLink": null, @@ -381655,7 +381655,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -381670,7 +381670,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -381689,7 +381689,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -381706,7 +381706,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -381723,7 +381723,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -381740,7 +381740,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -381757,7 +381757,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityProvider", "ApiReferenceLink": null, @@ -381772,7 +381772,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityUserFlow", "ApiReferenceLink": null, @@ -381787,7 +381787,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -381802,7 +381802,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -381817,7 +381817,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -381832,7 +381832,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -381847,7 +381847,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -381864,7 +381864,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaInvitation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/invitation-post?view=graph-rest-beta", @@ -381904,7 +381904,7 @@ "OutputType": "IMicrosoftGraphInvitation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-post?view=graph-rest-beta", @@ -381936,7 +381936,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfile", "ApiReferenceLink": null, @@ -381951,7 +381951,7 @@ "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgent", "ApiReferenceLink": null, @@ -381968,7 +381968,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroup", "ApiReferenceLink": null, @@ -381985,7 +381985,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupAgent", "ApiReferenceLink": null, @@ -382002,7 +382002,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupByRef", "ApiReferenceLink": null, @@ -382023,7 +382023,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", "ApiReferenceLink": null, @@ -382040,7 +382040,7 @@ "OutputType": "IMicrosoftGraphPublishedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "ApiReferenceLink": null, @@ -382057,7 +382057,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", "ApiReferenceLink": null, @@ -382074,7 +382074,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileConnector", "ApiReferenceLink": null, @@ -382091,7 +382091,7 @@ "OutputType": "IMicrosoftGraphConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileConnectorGroup", "ApiReferenceLink": null, @@ -382108,7 +382108,7 @@ "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef", "ApiReferenceLink": null, @@ -382125,7 +382125,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef", "ApiReferenceLink": null, @@ -382142,7 +382142,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfilePublishedResource", "ApiReferenceLink": null, @@ -382159,7 +382159,7 @@ "OutputType": "IMicrosoftGraphPublishedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup", "ApiReferenceLink": null, @@ -382176,7 +382176,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef", "ApiReferenceLink": null, @@ -382193,7 +382193,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOrganization", "ApiReferenceLink": null, @@ -382208,7 +382208,7 @@ "OutputType": "IMicrosoftGraphOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -382242,7 +382242,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOrganizationCertificateBasedAuthConfiguration", "ApiReferenceLink": null, @@ -382259,7 +382259,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaOrganizationExtension", "ApiReferenceLink": null, @@ -382276,7 +382276,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -382293,7 +382293,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPlaceAsRoomListWorkspace", "ApiReferenceLink": null, @@ -382310,7 +382310,7 @@ "OutputType": "IMicrosoftGraphWorkspace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPlannerBucket", "ApiReferenceLink": null, @@ -382350,7 +382350,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPlannerPlan", "ApiReferenceLink": null, @@ -382390,7 +382390,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPlannerRoster", "ApiReferenceLink": null, @@ -382422,7 +382422,7 @@ "OutputType": "IMicrosoftGraphPlannerRoster" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPlannerRosterMember", "ApiReferenceLink": null, @@ -382456,7 +382456,7 @@ "OutputType": "IMicrosoftGraphPlannerRosterMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPlannerTask", "ApiReferenceLink": null, @@ -382496,7 +382496,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -382528,7 +382528,7 @@ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -382560,7 +382560,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -382575,7 +382575,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -382607,7 +382607,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -382624,7 +382624,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyAuthorizationPolicy", "ApiReferenceLink": null, @@ -382639,7 +382639,7 @@ "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", "ApiReferenceLink": null, @@ -382656,7 +382656,7 @@ "OutputType": "IMicrosoftGraphDefaultUserRoleOverride" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -382688,7 +382688,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -382703,7 +382703,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -382718,7 +382718,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyFeatureRolloutPolicyApplyTo", "ApiReferenceLink": null, @@ -382735,7 +382735,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyFeatureRolloutPolicyApplyToByRef", "ApiReferenceLink": null, @@ -382752,7 +382752,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -382784,7 +382784,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyMobileAppManagementPolicy", "ApiReferenceLink": null, @@ -382799,7 +382799,7 @@ "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyMobileAppManagementPolicyIncludedGroupByRef", "ApiReferenceLink": null, @@ -382816,7 +382816,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyMobileDeviceManagementPolicy", "ApiReferenceLink": null, @@ -382831,7 +382831,7 @@ "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupByRef", "ApiReferenceLink": null, @@ -382848,7 +382848,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -382863,7 +382863,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -382880,7 +382880,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -382897,7 +382897,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -382912,7 +382912,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -382927,7 +382927,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -382944,7 +382944,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -382961,7 +382961,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyServicePrincipalCreationPolicy", "ApiReferenceLink": null, @@ -382976,7 +382976,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyServicePrincipalCreationPolicyExclude", "ApiReferenceLink": null, @@ -382993,7 +382993,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyServicePrincipalCreationPolicyInclude", "ApiReferenceLink": null, @@ -383010,7 +383010,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -383042,7 +383042,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -383074,7 +383074,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintConnector", "ApiReferenceLink": null, @@ -383089,7 +383089,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintOperation", "ApiReferenceLink": null, @@ -383104,7 +383104,7 @@ "OutputType": "IMicrosoftGraphPrintOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinter", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-create?view=graph-rest-beta", @@ -383144,7 +383144,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterJob", "ApiReferenceLink": null, @@ -383202,7 +383202,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -383219,7 +383219,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterJobDocumentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-beta", @@ -383261,7 +383261,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterJobTask", "ApiReferenceLink": null, @@ -383278,7 +383278,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterShare", "ApiReferenceLink": null, @@ -383293,7 +383293,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterShareAllowedGroupByRef", "ApiReferenceLink": null, @@ -383310,7 +383310,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterShareAllowedUserByRef", "ApiReferenceLink": null, @@ -383327,7 +383327,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterShareJob", "ApiReferenceLink": null, @@ -383344,7 +383344,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterShareJobDocument", "ApiReferenceLink": null, @@ -383361,7 +383361,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterShareJobDocumentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-beta", @@ -383378,7 +383378,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterShareJobTask", "ApiReferenceLink": null, @@ -383395,7 +383395,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -383429,7 +383429,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintService", "ApiReferenceLink": null, @@ -383444,7 +383444,7 @@ "OutputType": "IMicrosoftGraphPrintService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintServiceEndpoint", "ApiReferenceLink": null, @@ -383461,7 +383461,7 @@ "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintShare", "ApiReferenceLink": null, @@ -383476,7 +383476,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintShareAllowedGroupByRef", "ApiReferenceLink": null, @@ -383493,7 +383493,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintShareAllowedUserByRef", "ApiReferenceLink": null, @@ -383510,7 +383510,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintShareJob", "ApiReferenceLink": null, @@ -383560,7 +383560,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintShareJobDocument", "ApiReferenceLink": null, @@ -383577,7 +383577,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintShareJobDocumentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-beta", @@ -383619,7 +383619,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintShareJobTask", "ApiReferenceLink": null, @@ -383636,7 +383636,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintTaskDefinition", "ApiReferenceLink": null, @@ -383651,7 +383651,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -383668,7 +383668,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -383683,7 +383683,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -383700,7 +383700,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccess", "ApiReferenceLink": null, @@ -383715,7 +383715,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResource", "ApiReferenceLink": null, @@ -383732,7 +383732,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResourceRoleAssignment", "ApiReferenceLink": null, @@ -383749,7 +383749,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", "ApiReferenceLink": null, @@ -383766,7 +383766,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResourceRoleDefinition", "ApiReferenceLink": null, @@ -383783,7 +383783,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResourceRoleSetting", "ApiReferenceLink": null, @@ -383800,7 +383800,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccessRoleAssignment", "ApiReferenceLink": null, @@ -383817,7 +383817,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccessRoleAssignmentRequest", "ApiReferenceLink": null, @@ -383834,7 +383834,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccessRoleDefinition", "ApiReferenceLink": null, @@ -383851,7 +383851,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedAccessRoleSetting", "ApiReferenceLink": null, @@ -383868,7 +383868,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedApproval", "ApiReferenceLink": null, @@ -383883,7 +383883,7 @@ "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedOperationEvent", "ApiReferenceLink": null, @@ -383898,7 +383898,7 @@ "OutputType": "IMicrosoftGraphPrivilegedOperationEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedRole", "ApiReferenceLink": null, @@ -383913,7 +383913,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedRoleAssignment", "ApiReferenceLink": null, @@ -383928,7 +383928,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedRoleAssignmentEligible", "ApiReferenceLink": null, @@ -383943,7 +383943,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedRoleAssignmentPermanent", "ApiReferenceLink": null, @@ -383960,7 +383960,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaPrivilegedRoleAssignmentRequest", "ApiReferenceLink": null, @@ -383975,7 +383975,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaProgram", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-create?view=graph-rest-beta", @@ -383990,7 +383990,7 @@ "OutputType": "IMicrosoftGraphProgram" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaProgramControl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-create?view=graph-rest-beta", @@ -384013,7 +384013,7 @@ "OutputType": "IMicrosoftGraphProgramControl" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaProgramControlType", "ApiReferenceLink": null, @@ -384028,7 +384028,7 @@ "OutputType": "IMicrosoftGraphProgramControlType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -384043,7 +384043,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -384058,7 +384058,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -384073,7 +384073,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRiskDetection", "ApiReferenceLink": null, @@ -384088,7 +384088,7 @@ "OutputType": "IMicrosoftGraphRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRiskyServicePrincipal", "ApiReferenceLink": null, @@ -384103,7 +384103,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -384120,7 +384120,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRiskyUser", "ApiReferenceLink": null, @@ -384135,7 +384135,7 @@ "OutputType": "IMicrosoftGraphRiskyUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRiskyUserHistory", "ApiReferenceLink": null, @@ -384152,7 +384152,7 @@ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcResourceNamespace", "ApiReferenceLink": null, @@ -384167,7 +384167,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -384184,7 +384184,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcRoleAssignment", "ApiReferenceLink": null, @@ -384216,7 +384216,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -384233,7 +384233,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcRoleDefinition", "ApiReferenceLink": null, @@ -384289,7 +384289,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -384306,7 +384306,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementResourceNamespace", "ApiReferenceLink": null, @@ -384321,7 +384321,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -384338,7 +384338,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -384370,7 +384370,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -384387,7 +384387,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -384443,7 +384443,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -384460,7 +384460,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -384475,7 +384475,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -384492,7 +384492,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -384507,7 +384507,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentApproval", "ApiReferenceLink": null, @@ -384522,7 +384522,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -384539,7 +384539,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -384554,7 +384554,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -384569,7 +384569,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -384617,7 +384617,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -384649,7 +384649,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -384666,7 +384666,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -384681,7 +384681,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -384696,7 +384696,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -384728,7 +384728,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -384743,7 +384743,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseApp", "ApiReferenceLink": null, @@ -384758,7 +384758,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppResourceNamespace", "ApiReferenceLink": null, @@ -384775,7 +384775,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -384792,7 +384792,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignment", "ApiReferenceLink": null, @@ -384809,7 +384809,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", "ApiReferenceLink": null, @@ -384826,7 +384826,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -384843,7 +384843,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -384860,7 +384860,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -384877,7 +384877,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -384894,7 +384894,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleDefinition", "ApiReferenceLink": null, @@ -384911,7 +384911,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -384928,7 +384928,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -384945,7 +384945,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -384962,7 +384962,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -384979,7 +384979,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -384996,7 +384996,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -385011,7 +385011,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -385028,7 +385028,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -385060,7 +385060,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", "ApiReferenceLink": null, @@ -385075,7 +385075,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -385092,7 +385092,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -385107,7 +385107,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -385122,7 +385122,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -385137,7 +385137,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -385152,7 +385152,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -385169,7 +385169,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -385184,7 +385184,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -385199,7 +385199,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -385214,7 +385214,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -385229,7 +385229,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeCustomAppScope", "ApiReferenceLink": null, @@ -385244,7 +385244,7 @@ "OutputType": "IMicrosoftGraphCustomAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeResourceNamespace", "ApiReferenceLink": null, @@ -385259,7 +385259,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -385276,7 +385276,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeRoleAssignment", "ApiReferenceLink": null, @@ -385291,7 +385291,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeRoleDefinition", "ApiReferenceLink": null, @@ -385306,7 +385306,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -385323,7 +385323,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -385338,7 +385338,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-post-schemaextensions?view=graph-rest-beta", @@ -385370,7 +385370,7 @@ "OutputType": "IMicrosoftGraphSchemaExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSearchAcronym", "ApiReferenceLink": null, @@ -385402,7 +385402,7 @@ "OutputType": "IMicrosoftGraphSearchAcronym" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSearchBookmark", "ApiReferenceLink": null, @@ -385434,7 +385434,7 @@ "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSearchQna", "ApiReferenceLink": null, @@ -385466,7 +385466,7 @@ "OutputType": "IMicrosoftGraphSearchQna" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAction", "ApiReferenceLink": null, @@ -385481,7 +385481,7 @@ "OutputType": "IMicrosoftGraphSecurityAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAlert", "ApiReferenceLink": null, @@ -385496,7 +385496,7 @@ "OutputType": "IMicrosoftGraphAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAlertV2", "ApiReferenceLink": null, @@ -385511,7 +385511,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulation", "ApiReferenceLink": null, @@ -385526,7 +385526,7 @@ "OutputType": "IMicrosoftGraphSimulation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -385541,7 +385541,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -385558,7 +385558,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -385573,7 +385573,7 @@ "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -385590,7 +385590,7 @@ "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -385605,7 +385605,7 @@ "OutputType": "IMicrosoftGraphLandingPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -385622,7 +385622,7 @@ "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -385637,7 +385637,7 @@ "OutputType": "IMicrosoftGraphLoginPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -385652,7 +385652,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -385667,7 +385667,7 @@ "OutputType": "IMicrosoftGraphPayload" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -385682,7 +385682,7 @@ "OutputType": "IMicrosoftGraphTraining" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationTrainingCampaign", "ApiReferenceLink": null, @@ -385697,7 +385697,7 @@ "OutputType": "IMicrosoftGraphTrainingCampaign" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -385714,7 +385714,7 @@ "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAuditLogQuery", "ApiReferenceLink": null, @@ -385786,7 +385786,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditLogQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityAuditLogQueryRecord", "ApiReferenceLink": null, @@ -385803,7 +385803,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditLogRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -385835,7 +385835,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -385869,7 +385869,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -385903,7 +385903,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -385937,7 +385937,7 @@ "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -385971,7 +385971,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -386005,7 +386005,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -386039,7 +386039,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -386073,7 +386073,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -386107,7 +386107,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -386124,7 +386124,7 @@ "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -386158,7 +386158,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", "ApiReferenceLink": null, @@ -386175,7 +386175,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -386209,7 +386209,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -386243,7 +386243,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -386260,7 +386260,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -386294,7 +386294,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCloudAppSecurityProfile", "ApiReferenceLink": null, @@ -386309,7 +386309,7 @@ "OutputType": "IMicrosoftGraphCloudAppSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityCollaborationAnalyzedEmail", "ApiReferenceLink": null, @@ -386324,7 +386324,7 @@ "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityDomainSecurityProfile", "ApiReferenceLink": null, @@ -386339,7 +386339,7 @@ "OutputType": "IMicrosoftGraphDomainSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityFileSecurityProfile", "ApiReferenceLink": null, @@ -386354,7 +386354,7 @@ "OutputType": "IMicrosoftGraphFileSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityHostSecurityProfile", "ApiReferenceLink": null, @@ -386369,7 +386369,7 @@ "OutputType": "IMicrosoftGraphHostSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityIdentityHealthIssue", "ApiReferenceLink": null, @@ -386384,7 +386384,7 @@ "OutputType": "IMicrosoftGraphSecurityHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityIncident", "ApiReferenceLink": null, @@ -386399,7 +386399,7 @@ "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -386414,7 +386414,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityIPSecurityProfile", "ApiReferenceLink": null, @@ -386429,7 +386429,7 @@ "OutputType": "IMicrosoftGraphIPSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityLabelAuthority", "ApiReferenceLink": null, @@ -386444,7 +386444,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityLabelCategory", "ApiReferenceLink": null, @@ -386459,7 +386459,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -386476,7 +386476,7 @@ "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityLabelCitation", "ApiReferenceLink": null, @@ -386491,7 +386491,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityLabelDepartment", "ApiReferenceLink": null, @@ -386506,7 +386506,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -386521,7 +386521,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -386536,7 +386536,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -386553,7 +386553,7 @@ "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityProviderTenantSetting", "ApiReferenceLink": null, @@ -386568,7 +386568,7 @@ "OutputType": "IMicrosoftGraphProviderTenantSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityRuleDetectionRule", "ApiReferenceLink": null, @@ -386583,7 +386583,7 @@ "OutputType": "IMicrosoftGraphSecurityDetectionRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecuritySecureScore", "ApiReferenceLink": null, @@ -386598,7 +386598,7 @@ "OutputType": "IMicrosoftGraphSecureScore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -386613,7 +386613,7 @@ "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -386628,7 +386628,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -386645,7 +386645,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -386660,7 +386660,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -386675,7 +386675,7 @@ "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -386690,7 +386690,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -386705,7 +386705,7 @@ "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -386720,7 +386720,7 @@ "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -386735,7 +386735,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -386750,7 +386750,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -386765,7 +386765,7 @@ "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -386780,7 +386780,7 @@ "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -386795,7 +386795,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -386810,7 +386810,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -386825,7 +386825,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -386840,7 +386840,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -386855,7 +386855,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -386870,7 +386870,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -386887,7 +386887,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -386902,7 +386902,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -386917,7 +386917,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatSubmissionEmailThreat", "ApiReferenceLink": null, @@ -386949,7 +386949,7 @@ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", "ApiReferenceLink": null, @@ -386964,7 +386964,7 @@ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatSubmissionFileThreat", "ApiReferenceLink": null, @@ -386996,7 +386996,7 @@ "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityThreatSubmissionUrlThreat", "ApiReferenceLink": null, @@ -387028,7 +387028,7 @@ "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityTiIndicator", "ApiReferenceLink": null, @@ -387043,7 +387043,7 @@ "OutputType": "IMicrosoftGraphTiIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -387058,7 +387058,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -387073,7 +387073,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSecurityUserSecurityProfile", "ApiReferenceLink": null, @@ -387088,7 +387088,7 @@ "OutputType": "IMicrosoftGraphUserSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -387103,7 +387103,7 @@ "OutputType": "IMicrosoftGraphServiceHealth" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -387120,7 +387120,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -387135,7 +387135,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -387150,7 +387150,7 @@ "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -387167,7 +387167,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-beta", @@ -387207,7 +387207,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -387249,7 +387249,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -387291,7 +387291,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalClaimMappingPolicyByRef", "ApiReferenceLink": null, @@ -387349,7 +387349,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -387366,7 +387366,7 @@ "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -387383,7 +387383,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef", "ApiReferenceLink": null, @@ -387441,7 +387441,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalLicenseDetail", "ApiReferenceLink": null, @@ -387458,7 +387458,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalOwnerByRef", "ApiReferenceLink": null, @@ -387508,7 +387508,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalPasswordSingleSignOnCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-createpasswordsinglesignoncredentials?view=graph-rest-beta", @@ -387550,7 +387550,7 @@ "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -387567,7 +387567,7 @@ "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -387582,7 +387582,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -387616,7 +387616,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalSynchronizationJobOnDemand", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-beta", @@ -387650,7 +387650,7 @@ "OutputType": "IMicrosoftGraphStringKeyStringValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -387667,7 +387667,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -387684,7 +387684,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -387701,7 +387701,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareListColumn", "ApiReferenceLink": null, @@ -387718,7 +387718,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareListContentType", "ApiReferenceLink": null, @@ -387735,7 +387735,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareListContentTypeColumn", "ApiReferenceLink": null, @@ -387752,7 +387752,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -387769,7 +387769,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareListItem", "ApiReferenceLink": null, @@ -387786,7 +387786,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -387807,7 +387807,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareListItemVersion", "ApiReferenceLink": null, @@ -387828,7 +387828,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareListOperation", "ApiReferenceLink": null, @@ -387845,7 +387845,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareListSubscription", "ApiReferenceLink": null, @@ -387862,7 +387862,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": null, @@ -387877,7 +387877,7 @@ "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -387894,7 +387894,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -387911,7 +387911,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteColumn", "ApiReferenceLink": null, @@ -387945,7 +387945,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteContentType", "ApiReferenceLink": null, @@ -387979,7 +387979,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteContentTypeColumn", "ApiReferenceLink": null, @@ -388013,7 +388013,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -388030,7 +388030,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteGetByPathColumn", "ApiReferenceLink": null, @@ -388051,7 +388051,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteGetByPathContentType", "ApiReferenceLink": null, @@ -388072,7 +388072,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteGetByPathList", "ApiReferenceLink": null, @@ -388093,7 +388093,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteGetByPathOperation", "ApiReferenceLink": null, @@ -388114,7 +388114,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteGetByPathPage", "ApiReferenceLink": null, @@ -388135,7 +388135,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteGetByPathPermission", "ApiReferenceLink": null, @@ -388156,7 +388156,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteList", "ApiReferenceLink": null, @@ -388190,7 +388190,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListActivity", "ApiReferenceLink": null, @@ -388207,7 +388207,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListColumn", "ApiReferenceLink": null, @@ -388241,7 +388241,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListContentType", "ApiReferenceLink": null, @@ -388258,7 +388258,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -388292,7 +388292,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -388309,7 +388309,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListItem", "ApiReferenceLink": null, @@ -388326,7 +388326,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListItemActivity", "ApiReferenceLink": null, @@ -388343,7 +388343,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -388393,7 +388393,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -388435,7 +388435,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListItemVersion", "ApiReferenceLink": null, @@ -388452,7 +388452,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListOperation", "ApiReferenceLink": null, @@ -388469,7 +388469,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteListSubscription", "ApiReferenceLink": null, @@ -388486,7 +388486,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -388528,7 +388528,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -388570,7 +388570,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -388612,7 +388612,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteOnenotePage", "ApiReferenceLink": null, @@ -388654,7 +388654,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteOnenoteSection", "ApiReferenceLink": null, @@ -388671,7 +388671,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -388688,7 +388688,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -388730,7 +388730,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -388772,7 +388772,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteOperation", "ApiReferenceLink": null, @@ -388789,7 +388789,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSitePage", "ApiReferenceLink": null, @@ -388806,7 +388806,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -388823,7 +388823,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -388840,7 +388840,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -388857,7 +388857,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -388874,7 +388874,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -388891,7 +388891,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSitePermission", "ApiReferenceLink": null, @@ -388908,7 +388908,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroup", "ApiReferenceLink": null, @@ -388925,7 +388925,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -388942,7 +388942,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -388963,7 +388963,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -388984,7 +388984,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -389001,7 +389001,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -389018,7 +389018,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -389035,7 +389035,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -389052,7 +389052,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -389069,7 +389069,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSet", "ApiReferenceLink": null, @@ -389086,7 +389086,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -389107,7 +389107,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -389128,7 +389128,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -389145,7 +389145,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -389166,7 +389166,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -389187,7 +389187,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -389204,7 +389204,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -389221,7 +389221,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -389238,7 +389238,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -389255,7 +389255,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -389272,7 +389272,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -389289,7 +389289,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -389306,7 +389306,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -389323,7 +389323,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -389340,7 +389340,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -389357,7 +389357,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSubscribedSku", "ApiReferenceLink": null, @@ -389372,7 +389372,7 @@ "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-post-subscriptions?view=graph-rest-beta", @@ -389387,7 +389387,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-post?view=graph-rest-beta", @@ -389435,7 +389435,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamChannel", "ApiReferenceLink": null, @@ -389493,7 +389493,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-beta", @@ -389508,7 +389508,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamChannelMember", "ApiReferenceLink": null, @@ -389525,7 +389525,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamChannelMessage", "ApiReferenceLink": null, @@ -389567,7 +389567,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -389584,7 +389584,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamChannelMessageReply", "ApiReferenceLink": null, @@ -389626,7 +389626,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -389643,7 +389643,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -389660,7 +389660,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamChannelTab", "ApiReferenceLink": null, @@ -389750,7 +389750,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamInstalledApp", "ApiReferenceLink": null, @@ -389856,7 +389856,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamMember", "ApiReferenceLink": null, @@ -389873,7 +389873,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamOperation", "ApiReferenceLink": null, @@ -389890,7 +389890,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamPermissionGrant", "ApiReferenceLink": null, @@ -389907,7 +389907,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-beta", @@ -389922,7 +389922,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -389939,7 +389939,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -389956,7 +389956,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -389973,7 +389973,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -389990,7 +389990,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -390007,7 +390007,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -390024,7 +390024,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -390041,7 +390041,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleDayNote", "ApiReferenceLink": null, @@ -390058,7 +390058,7 @@ "OutputType": "IMicrosoftGraphDayNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -390092,7 +390092,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -390134,7 +390134,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -390168,7 +390168,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -390202,7 +390202,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleShift", "ApiReferenceLink": null, @@ -390236,7 +390236,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -390253,7 +390253,7 @@ "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -390287,7 +390287,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -390304,7 +390304,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -390338,7 +390338,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -390372,7 +390372,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -390389,7 +390389,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamTag", "ApiReferenceLink": null, @@ -390423,7 +390423,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamTagMember", "ApiReferenceLink": null, @@ -390440,7 +390440,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedChat", "ApiReferenceLink": null, @@ -390455,7 +390455,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -390470,7 +390470,7 @@ "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -390487,7 +390487,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-beta", @@ -390502,7 +390502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -390519,7 +390519,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -390536,7 +390536,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -390553,7 +390553,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -390570,7 +390570,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -390587,7 +390587,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -390604,7 +390604,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -390621,7 +390621,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDevice", "ApiReferenceLink": null, @@ -390636,7 +390636,7 @@ "OutputType": "IMicrosoftGraphTeamworkDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkDeviceOperation", "ApiReferenceLink": null, @@ -390653,7 +390653,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkTeamTemplate", "ApiReferenceLink": null, @@ -390668,7 +390668,7 @@ "OutputType": "IMicrosoftGraphTeamTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkTeamTemplateDefinition", "ApiReferenceLink": null, @@ -390685,7 +390685,7 @@ "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -390700,7 +390700,7 @@ "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -390715,7 +390715,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -390732,7 +390732,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -390747,7 +390747,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -390764,7 +390764,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -390781,7 +390781,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -390798,7 +390798,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenant", "ApiReferenceLink": null, @@ -390813,7 +390813,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", "ApiReferenceLink": null, @@ -390828,7 +390828,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAlert", "ApiReferenceLink": null, @@ -390843,7 +390843,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAlertLog", "ApiReferenceLink": null, @@ -390858,7 +390858,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAlertRule", "ApiReferenceLink": null, @@ -390873,7 +390873,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", "ApiReferenceLink": null, @@ -390888,7 +390888,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantApiNotification", "ApiReferenceLink": null, @@ -390903,7 +390903,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAppPerformance", "ApiReferenceLink": null, @@ -390918,7 +390918,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAuditEvent", "ApiReferenceLink": null, @@ -390933,7 +390933,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCloudPcConnection", "ApiReferenceLink": null, @@ -390948,7 +390948,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCloudPcDevice", "ApiReferenceLink": null, @@ -390963,7 +390963,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCloudPcOverview", "ApiReferenceLink": null, @@ -390978,7 +390978,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", "ApiReferenceLink": null, @@ -390993,7 +390993,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", "ApiReferenceLink": null, @@ -391008,7 +391008,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCustomizedInformation", "ApiReferenceLink": null, @@ -391023,7 +391023,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantDetailedInformation", "ApiReferenceLink": null, @@ -391038,7 +391038,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", "ApiReferenceLink": null, @@ -391053,7 +391053,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -391068,7 +391068,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", "ApiReferenceLink": null, @@ -391083,7 +391083,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantEmailNotification", "ApiReferenceLink": null, @@ -391098,7 +391098,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantGroup", "ApiReferenceLink": null, @@ -391113,7 +391113,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", "ApiReferenceLink": null, @@ -391128,7 +391128,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", "ApiReferenceLink": null, @@ -391143,7 +391143,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementAction", "ApiReferenceLink": null, @@ -391158,7 +391158,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", "ApiReferenceLink": null, @@ -391173,7 +391173,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementIntent", "ApiReferenceLink": null, @@ -391188,7 +391188,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplate", "ApiReferenceLink": null, @@ -391203,7 +391203,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", "ApiReferenceLink": null, @@ -391218,7 +391218,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", "ApiReferenceLink": null, @@ -391233,7 +391233,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", "ApiReferenceLink": null, @@ -391248,7 +391248,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", "ApiReferenceLink": null, @@ -391263,7 +391263,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", "ApiReferenceLink": null, @@ -391278,7 +391278,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", "ApiReferenceLink": null, @@ -391295,7 +391295,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantMyRole", "ApiReferenceLink": null, @@ -391310,7 +391310,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsMyRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantTag", "ApiReferenceLink": null, @@ -391325,7 +391325,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", "ApiReferenceLink": null, @@ -391340,7 +391340,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", "ApiReferenceLink": null, @@ -391355,7 +391355,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", "ApiReferenceLink": null, @@ -391370,7 +391370,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -391385,7 +391385,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTrustFrameworkKeySet", "ApiReferenceLink": null, @@ -391400,7 +391400,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkKeySet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTrustFrameworkKeySetKey", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-generatekey?view=graph-rest-beta", @@ -391417,7 +391417,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaTrustFrameworkPolicy", "ApiReferenceLink": null, @@ -391432,7 +391432,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-post-users?view=graph-rest-beta", @@ -391496,7 +391496,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserActivity", "ApiReferenceLink": null, @@ -391513,7 +391513,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserActivityHistoryItem", "ApiReferenceLink": null, @@ -391530,7 +391530,7 @@ "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserActivityStatistics", "ApiReferenceLink": null, @@ -391547,7 +391547,7 @@ "OutputType": "IMicrosoftGraphActivityStatistics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserAppRoleAssignment", "ApiReferenceLink": null, @@ -391564,7 +391564,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -391598,7 +391598,7 @@ "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserAuthenticationMethod", "ApiReferenceLink": null, @@ -391615,7 +391615,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserAuthenticationOperation", "ApiReferenceLink": null, @@ -391632,7 +391632,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -391666,7 +391666,7 @@ "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserAuthenticationTemporaryAccessPassMethod", "ApiReferenceLink": null, @@ -391683,7 +391683,7 @@ "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserCalendar", "ApiReferenceLink": null, @@ -391700,7 +391700,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserCalendarEvent", "ApiReferenceLink": null, @@ -391717,7 +391717,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserCalendarGroup", "ApiReferenceLink": null, @@ -391734,7 +391734,7 @@ "OutputType": "IMicrosoftGraphCalendarGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserCalendarGroupCalendar", "ApiReferenceLink": null, @@ -391751,7 +391751,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserCalendarPermission", "ApiReferenceLink": null, @@ -391772,7 +391772,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChat", "ApiReferenceLink": null, @@ -391789,7 +391789,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatInstalledApp", "ApiReferenceLink": null, @@ -391806,7 +391806,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatMember", "ApiReferenceLink": null, @@ -391823,7 +391823,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatMessage", "ApiReferenceLink": null, @@ -391840,7 +391840,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -391857,7 +391857,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatMessageReply", "ApiReferenceLink": null, @@ -391874,7 +391874,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -391891,7 +391891,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatOperation", "ApiReferenceLink": null, @@ -391908,7 +391908,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatPermissionGrant", "ApiReferenceLink": null, @@ -391925,7 +391925,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatPinnedMessage", "ApiReferenceLink": null, @@ -391942,7 +391942,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserChatTab", "ApiReferenceLink": null, @@ -391959,7 +391959,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserCloudPcSnapshot", "ApiReferenceLink": null, @@ -391974,7 +391974,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserContact", "ApiReferenceLink": null, @@ -391991,7 +391991,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserContactExtension", "ApiReferenceLink": null, @@ -392008,7 +392008,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserContactFolder", "ApiReferenceLink": null, @@ -392025,7 +392025,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -392042,7 +392042,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -392059,7 +392059,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -392076,7 +392076,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserContactFolderContact", "ApiReferenceLink": null, @@ -392093,7 +392093,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -392110,7 +392110,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDefaultCalendarEvent", "ApiReferenceLink": null, @@ -392127,7 +392127,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDevice", "ApiReferenceLink": null, @@ -392144,7 +392144,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDeviceCommand", "ApiReferenceLink": null, @@ -392161,7 +392161,7 @@ "OutputType": "IMicrosoftGraphCommand" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -392178,7 +392178,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -392195,7 +392195,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDeviceEnrollmentConfigurationEnrollmentNotificationConfiguration", "ApiReferenceLink": null, @@ -392212,7 +392212,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDeviceExtension", "ApiReferenceLink": null, @@ -392229,7 +392229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -392246,7 +392246,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDeviceRegisteredOwnerByRef", "ApiReferenceLink": null, @@ -392263,7 +392263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDeviceRegisteredUserByRef", "ApiReferenceLink": null, @@ -392280,7 +392280,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDeviceUsageRights", "ApiReferenceLink": null, @@ -392297,7 +392297,7 @@ "OutputType": "IMicrosoftGraphUsageRight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDrive", "ApiReferenceLink": null, @@ -392314,7 +392314,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveBundle", "ApiReferenceLink": null, @@ -392331,7 +392331,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItem", "ApiReferenceLink": null, @@ -392348,7 +392348,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -392365,7 +392365,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemChild", "ApiReferenceLink": null, @@ -392382,7 +392382,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", @@ -392399,7 +392399,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -392416,7 +392416,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -392433,7 +392433,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -392450,7 +392450,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemPermission", "ApiReferenceLink": null, @@ -392467,7 +392467,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemSubscription", "ApiReferenceLink": null, @@ -392484,7 +392484,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -392501,7 +392501,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemUploadSession", "ApiReferenceLink": null, @@ -392518,7 +392518,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveItemVersion", "ApiReferenceLink": null, @@ -392535,7 +392535,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListColumn", "ApiReferenceLink": null, @@ -392552,7 +392552,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListContentType", "ApiReferenceLink": null, @@ -392569,7 +392569,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -392586,7 +392586,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -392603,7 +392603,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListItem", "ApiReferenceLink": null, @@ -392620,7 +392620,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -392637,7 +392637,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -392654,7 +392654,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListItemVersion", "ApiReferenceLink": null, @@ -392671,7 +392671,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListOperation", "ApiReferenceLink": null, @@ -392688,7 +392688,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveListSubscription", "ApiReferenceLink": null, @@ -392705,7 +392705,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -392722,7 +392722,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootChild", "ApiReferenceLink": null, @@ -392739,7 +392739,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", @@ -392756,7 +392756,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -392773,7 +392773,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootListItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", @@ -392790,7 +392790,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -392807,7 +392807,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootPermission", "ApiReferenceLink": null, @@ -392824,7 +392824,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootSubscription", "ApiReferenceLink": null, @@ -392841,7 +392841,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -392858,7 +392858,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootUploadSession", "ApiReferenceLink": null, @@ -392875,7 +392875,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserDriveRootVersion", "ApiReferenceLink": null, @@ -392892,7 +392892,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEvent", "ApiReferenceLink": null, @@ -392909,7 +392909,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventAttachment", "ApiReferenceLink": null, @@ -392926,7 +392926,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -392960,7 +392960,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -392977,7 +392977,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -392994,7 +392994,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventExceptionOccurrenceInstanceAttachment", "ApiReferenceLink": null, @@ -393011,7 +393011,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -393028,7 +393028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventExtension", "ApiReferenceLink": null, @@ -393045,7 +393045,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventInstanceAttachment", "ApiReferenceLink": null, @@ -393062,7 +393062,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventInstanceAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -393079,7 +393079,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventInstanceExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -393096,7 +393096,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -393113,7 +393113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserEventInstanceExtension", "ApiReferenceLink": null, @@ -393130,7 +393130,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserExtension", "ApiReferenceLink": null, @@ -393147,7 +393147,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInferenceClassificationOverride", "ApiReferenceLink": null, @@ -393164,7 +393164,7 @@ "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -393181,7 +393181,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -393198,7 +393198,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -393215,7 +393215,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -393232,7 +393232,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -393249,7 +393249,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -393266,7 +393266,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInsightShared", "ApiReferenceLink": null, @@ -393283,7 +393283,7 @@ "OutputType": "IMicrosoftGraphSharedInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInsightTrending", "ApiReferenceLink": null, @@ -393300,7 +393300,7 @@ "OutputType": "IMicrosoftGraphTrending" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserInsightUsed", "ApiReferenceLink": null, @@ -393317,7 +393317,7 @@ "OutputType": "IMicrosoftGraphUsedInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolder", "ApiReferenceLink": null, @@ -393334,7 +393334,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -393351,7 +393351,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -393368,7 +393368,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageAttachment", "ApiReferenceLink": null, @@ -393385,7 +393385,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -393402,7 +393402,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -393419,7 +393419,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageForward", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-beta", @@ -393436,7 +393436,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageMention", "ApiReferenceLink": null, @@ -393453,7 +393453,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageReply", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-beta", @@ -393470,7 +393470,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageReplyAll", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-beta", @@ -393487,7 +393487,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageRule", "ApiReferenceLink": null, @@ -393504,7 +393504,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderMessage", "ApiReferenceLink": null, @@ -393521,7 +393521,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageAttachment", "ApiReferenceLink": null, @@ -393538,7 +393538,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -393555,7 +393555,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -393572,7 +393572,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageForward", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-beta", @@ -393589,7 +393589,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageMention", "ApiReferenceLink": null, @@ -393606,7 +393606,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageReply", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-beta", @@ -393623,7 +393623,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageReplyAll", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-beta", @@ -393640,7 +393640,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageRule", "ApiReferenceLink": null, @@ -393657,7 +393657,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDevice", "ApiReferenceLink": null, @@ -393674,7 +393674,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -393691,7 +393691,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -393708,7 +393708,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -393725,7 +393725,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -393742,7 +393742,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -393759,7 +393759,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -393776,7 +393776,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceLogCollectionResponseDownloadUrl", "ApiReferenceLink": null, @@ -393791,7 +393791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -393808,7 +393808,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -393825,7 +393825,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -393842,7 +393842,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceWindowsDefenderUpdateSignature", "ApiReferenceLink": null, @@ -393857,7 +393857,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -393874,7 +393874,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMessage", "ApiReferenceLink": null, @@ -393891,7 +393891,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMessageAttachment", "ApiReferenceLink": null, @@ -393908,7 +393908,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMessageAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -393942,7 +393942,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMessageExtension", "ApiReferenceLink": null, @@ -393959,7 +393959,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMessageForward", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-beta", @@ -393976,7 +393976,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMessageMention", "ApiReferenceLink": null, @@ -393993,7 +393993,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMessageReply", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-beta", @@ -394010,7 +394010,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMessageReplyAll", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-beta", @@ -394027,7 +394027,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMobileAppIntentAndState", "ApiReferenceLink": null, @@ -394044,7 +394044,7 @@ "OutputType": "IMicrosoftGraphMobileAppIntentAndState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -394061,7 +394061,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -394078,7 +394078,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", "ApiReferenceLink": null, @@ -394093,7 +394093,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserNotification", "ApiReferenceLink": null, @@ -394110,7 +394110,7 @@ "OutputType": "IMicrosoftGraphNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnenoteNotebook", "ApiReferenceLink": null, @@ -394152,7 +394152,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnenoteNotebookSection", "ApiReferenceLink": null, @@ -394194,7 +394194,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -394236,7 +394236,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnenotePage", "ApiReferenceLink": null, @@ -394278,7 +394278,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnenoteSection", "ApiReferenceLink": null, @@ -394295,7 +394295,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -394312,7 +394312,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -394354,7 +394354,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnenoteSectionPage", "ApiReferenceLink": null, @@ -394396,7 +394396,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnlineMeeting", "ApiReferenceLink": null, @@ -394430,7 +394430,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -394447,7 +394447,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -394468,7 +394468,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -394485,7 +394485,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -394502,7 +394502,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -394544,7 +394544,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -394561,7 +394561,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookMasterCategory", "ApiReferenceLink": null, @@ -394578,7 +394578,7 @@ "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTask", "ApiReferenceLink": null, @@ -394595,7 +394595,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskAttachment", "ApiReferenceLink": null, @@ -394612,7 +394612,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -394629,7 +394629,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskFolder", "ApiReferenceLink": null, @@ -394646,7 +394646,7 @@ "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskFolderTask", "ApiReferenceLink": null, @@ -394663,7 +394663,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskFolderTaskAttachment", "ApiReferenceLink": null, @@ -394680,7 +394680,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskFolderTaskAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -394697,7 +394697,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroup", "ApiReferenceLink": null, @@ -394714,7 +394714,7 @@ "OutputType": "IMicrosoftGraphOutlookTaskGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroupTaskFolder", "ApiReferenceLink": null, @@ -394731,7 +394731,7 @@ "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroupTaskFolderTask", "ApiReferenceLink": null, @@ -394748,7 +394748,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachment", "ApiReferenceLink": null, @@ -394765,7 +394765,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", @@ -394782,7 +394782,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileAccount", "ApiReferenceLink": null, @@ -394816,7 +394816,7 @@ "OutputType": "IMicrosoftGraphUserAccountInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileAddress", "ApiReferenceLink": null, @@ -394850,7 +394850,7 @@ "OutputType": "IMicrosoftGraphItemAddress" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileAnniversary", "ApiReferenceLink": null, @@ -394884,7 +394884,7 @@ "OutputType": "IMicrosoftGraphPersonAnnualEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileAward", "ApiReferenceLink": null, @@ -394918,7 +394918,7 @@ "OutputType": "IMicrosoftGraphPersonAward" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileCertification", "ApiReferenceLink": null, @@ -394952,7 +394952,7 @@ "OutputType": "IMicrosoftGraphPersonCertification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileEducationalActivity", "ApiReferenceLink": null, @@ -394986,7 +394986,7 @@ "OutputType": "IMicrosoftGraphEducationalActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileEmail", "ApiReferenceLink": null, @@ -395020,7 +395020,7 @@ "OutputType": "IMicrosoftGraphItemEmail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileInterest", "ApiReferenceLink": null, @@ -395054,7 +395054,7 @@ "OutputType": "IMicrosoftGraphPersonInterest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileLanguage", "ApiReferenceLink": null, @@ -395088,7 +395088,7 @@ "OutputType": "IMicrosoftGraphLanguageProficiency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileName", "ApiReferenceLink": null, @@ -395146,7 +395146,7 @@ "OutputType": "IMicrosoftGraphPersonName" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileNote", "ApiReferenceLink": null, @@ -395180,7 +395180,7 @@ "OutputType": "IMicrosoftGraphPersonAnnotation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfilePatent", "ApiReferenceLink": null, @@ -395214,7 +395214,7 @@ "OutputType": "IMicrosoftGraphItemPatent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfilePhone", "ApiReferenceLink": null, @@ -395248,7 +395248,7 @@ "OutputType": "IMicrosoftGraphItemPhone" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfilePosition", "ApiReferenceLink": null, @@ -395282,7 +395282,7 @@ "OutputType": "IMicrosoftGraphWorkPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileProject", "ApiReferenceLink": null, @@ -395316,7 +395316,7 @@ "OutputType": "IMicrosoftGraphProjectParticipation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfilePublication", "ApiReferenceLink": null, @@ -395350,7 +395350,7 @@ "OutputType": "IMicrosoftGraphItemPublication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileSkill", "ApiReferenceLink": null, @@ -395384,7 +395384,7 @@ "OutputType": "IMicrosoftGraphSkillProficiency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileWebAccount", "ApiReferenceLink": null, @@ -395418,7 +395418,7 @@ "OutputType": "IMicrosoftGraphWebAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserProfileWebsite", "ApiReferenceLink": null, @@ -395452,7 +395452,7 @@ "OutputType": "IMicrosoftGraphPersonWebsite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -395469,7 +395469,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -395486,7 +395486,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserSettingStorageQuotaService", "ApiReferenceLink": null, @@ -395503,7 +395503,7 @@ "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserSettingWindows", "ApiReferenceLink": null, @@ -395520,7 +395520,7 @@ "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -395537,7 +395537,7 @@ "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -395554,7 +395554,7 @@ "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTeamworkInstalledApp", "ApiReferenceLink": null, @@ -395668,7 +395668,7 @@ "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTodoList", "ApiReferenceLink": null, @@ -395702,7 +395702,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTodoListExtension", "ApiReferenceLink": null, @@ -395719,7 +395719,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTodoListTask", "ApiReferenceLink": null, @@ -395753,7 +395753,7 @@ "OutputType": "IMicrosoftGraphTodoTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTodoListTaskAttachment", "ApiReferenceLink": null, @@ -395787,7 +395787,7 @@ "OutputType": "IMicrosoftGraphAttachmentBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTodoListTaskAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/taskfileattachment-createuploadsession?view=graph-rest-beta", @@ -395821,7 +395821,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTodoListTaskChecklistItem", "ApiReferenceLink": null, @@ -395855,7 +395855,7 @@ "OutputType": "IMicrosoftGraphChecklistItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTodoListTaskExtension", "ApiReferenceLink": null, @@ -395872,7 +395872,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaUserTodoListTaskLinkedResource", "ApiReferenceLink": null, @@ -395906,7 +395906,7 @@ "OutputType": "IMicrosoftGraphLinkedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEvent", "ApiReferenceLink": null, @@ -395921,7 +395921,7 @@ "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventPresenter", "ApiReferenceLink": null, @@ -395938,7 +395938,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventSession", "ApiReferenceLink": null, @@ -395955,7 +395955,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -395972,7 +395972,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -395989,7 +395989,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventTownhall", "ApiReferenceLink": null, @@ -396004,7 +396004,7 @@ "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventTownhallPresenter", "ApiReferenceLink": null, @@ -396021,7 +396021,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventTownhallSession", "ApiReferenceLink": null, @@ -396038,7 +396038,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventTownhallSessionAttendanceReport", "ApiReferenceLink": null, @@ -396055,7 +396055,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -396072,7 +396072,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventWebinar", "ApiReferenceLink": null, @@ -396087,7 +396087,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarPresenter", "ApiReferenceLink": null, @@ -396104,7 +396104,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -396121,7 +396121,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -396138,7 +396138,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -396155,7 +396155,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -396417,7 +396417,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBookingBusiness", "ApiReferenceLink": null, @@ -396432,7 +396432,7 @@ "OutputType": "IMicrosoftGraphBookingBusiness" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBookingBusinessAppointment", "ApiReferenceLink": null, @@ -396482,7 +396482,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -396499,7 +396499,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBookingBusinessCustomer", "ApiReferenceLink": null, @@ -396541,7 +396541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -396583,7 +396583,7 @@ "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBookingBusinessService", "ApiReferenceLink": null, @@ -396617,7 +396617,7 @@ "OutputType": "IMicrosoftGraphBookingService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -396651,7 +396651,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgBookingCurrency", "ApiReferenceLink": null, @@ -396666,7 +396666,7 @@ "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-post?view=graph-rest-1.0", @@ -396698,7 +396698,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChatInstalledApp", "ApiReferenceLink": null, @@ -396804,7 +396804,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChatMember", "ApiReferenceLink": null, @@ -396862,7 +396862,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChatMessage", "ApiReferenceLink": null, @@ -396912,7 +396912,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChatMessageHostedContent", "ApiReferenceLink": null, @@ -396929,7 +396929,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChatMessageReply", "ApiReferenceLink": null, @@ -396946,7 +396946,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -396963,7 +396963,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChatPermissionGrant", "ApiReferenceLink": null, @@ -396980,7 +396980,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChatPinnedMessage", "ApiReferenceLink": null, @@ -397022,7 +397022,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgChatTab", "ApiReferenceLink": null, @@ -397104,7 +397104,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationCall", "ApiReferenceLink": null, @@ -397160,7 +397160,7 @@ "OutputType": "IMicrosoftGraphCall" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -397194,7 +397194,7 @@ "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -397211,7 +397211,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationCallOperation", "ApiReferenceLink": null, @@ -397228,7 +397228,7 @@ "OutputType": "IMicrosoftGraphCommsOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationCallParticipant", "ApiReferenceLink": null, @@ -397245,7 +397245,7 @@ "OutputType": "IMicrosoftGraphParticipant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -397262,7 +397262,7 @@ "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -397277,7 +397277,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -397294,7 +397294,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -397311,7 +397311,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -397328,7 +397328,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -397345,7 +397345,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgCommunicationPresence", "ApiReferenceLink": null, @@ -397360,7 +397360,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgContact", "ApiReferenceLink": null, @@ -397375,7 +397375,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgContract", "ApiReferenceLink": null, @@ -397390,7 +397390,7 @@ "OutputType": "IMicrosoftGraphContract" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDataPolicyOperation", "ApiReferenceLink": null, @@ -397405,7 +397405,7 @@ "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-post-devices?view=graph-rest-1.0", @@ -399109,7 +399109,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceExtension", "ApiReferenceLink": null, @@ -399126,7 +399126,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -399141,7 +399141,7 @@ "OutputType": "IMicrosoftGraphAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -399173,7 +399173,7 @@ "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -399205,7 +399205,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -399237,7 +399237,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -399252,7 +399252,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -399269,7 +399269,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -399286,7 +399286,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -399303,7 +399303,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -399320,7 +399320,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -399337,7 +399337,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -399352,7 +399352,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -399369,7 +399369,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -399386,7 +399386,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -399401,7 +399401,7 @@ "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -399418,7 +399418,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -399435,7 +399435,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -399452,7 +399452,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -399469,7 +399469,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -399501,7 +399501,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -399535,7 +399535,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -399567,7 +399567,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -399582,7 +399582,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -399597,7 +399597,7 @@ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -399629,7 +399629,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -399646,7 +399646,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -399663,7 +399663,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl", "ApiReferenceLink": null, @@ -399678,7 +399678,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignature", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderupdatesignatures?view=graph-rest-1.0", @@ -399693,7 +399693,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -399710,7 +399710,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -399725,7 +399725,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -399759,7 +399759,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-applogcollectionrequest-createdownloadurl?view=graph-rest-1.0", @@ -399807,7 +399807,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -399839,7 +399839,7 @@ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -399854,7 +399854,7 @@ "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -399871,7 +399871,7 @@ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementPartner", "ApiReferenceLink": null, @@ -399903,7 +399903,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -399935,7 +399935,7 @@ "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -399967,7 +399967,7 @@ "OutputType": "IMicrosoftGraphResourceOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -399999,7 +399999,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -400031,7 +400031,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -400065,7 +400065,7 @@ "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -400080,7 +400080,7 @@ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -400095,7 +400095,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -400112,7 +400112,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -400129,7 +400129,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -400144,7 +400144,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -400176,7 +400176,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -400208,7 +400208,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -400240,7 +400240,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -400272,7 +400272,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -400304,7 +400304,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -400336,7 +400336,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -400368,7 +400368,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -400400,7 +400400,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -400415,7 +400415,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -400447,7 +400447,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -400462,7 +400462,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -400479,7 +400479,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -400511,7 +400511,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -400543,7 +400543,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -400575,7 +400575,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -400607,7 +400607,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -400639,7 +400639,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -400671,7 +400671,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -400703,7 +400703,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -400735,7 +400735,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -400767,7 +400767,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -400801,7 +400801,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -400833,7 +400833,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -400848,7 +400848,7 @@ "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -400863,7 +400863,7 @@ "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -400878,7 +400878,7 @@ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -400893,7 +400893,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -400910,7 +400910,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -400925,7 +400925,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -400942,7 +400942,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -400957,7 +400957,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -400972,7 +400972,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -400987,7 +400987,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -401019,7 +401019,7 @@ "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -401053,7 +401053,7 @@ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceRegisteredOwnerByRef", "ApiReferenceLink": null, @@ -401070,7 +401070,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDeviceRegisteredUserByRef", "ApiReferenceLink": null, @@ -401087,7 +401087,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -401102,7 +401102,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -401119,7 +401119,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryAdministrativeUnitMember", "ApiReferenceLink": null, @@ -401177,7 +401177,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryAdministrativeUnitMemberByRef", "ApiReferenceLink": null, @@ -401235,7 +401235,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -401252,7 +401252,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryAttributeSet", "ApiReferenceLink": null, @@ -401267,7 +401267,7 @@ "OutputType": "IMicrosoftGraphAttributeSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -401282,7 +401282,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -401299,7 +401299,7 @@ "OutputType": "IMicrosoftGraphAllowedValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryDeviceLocalCredential", "ApiReferenceLink": null, @@ -401314,7 +401314,7 @@ "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -401329,7 +401329,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryObject", "ApiReferenceLink": null, @@ -401344,7 +401344,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -401359,7 +401359,7 @@ "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-post-directoryroles?view=graph-rest-1.0", @@ -401374,7 +401374,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryRoleMemberByRef", "ApiReferenceLink": null, @@ -401391,7 +401391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -401408,7 +401408,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectoryRoleTemplate", "ApiReferenceLink": null, @@ -401423,7 +401423,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDirectorySubscription", "ApiReferenceLink": null, @@ -401438,7 +401438,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-post-domains?view=graph-rest-1.0", @@ -401453,7 +401453,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDomainFederationConfiguration", "ApiReferenceLink": null, @@ -401470,7 +401470,7 @@ "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -401487,7 +401487,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -401504,7 +401504,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDrive", "ApiReferenceLink": null, @@ -401519,7 +401519,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveBundle", "ApiReferenceLink": null, @@ -401536,7 +401536,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItem", "ApiReferenceLink": null, @@ -401553,7 +401553,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -401570,7 +401570,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemChild", "ApiReferenceLink": null, @@ -401612,7 +401612,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", @@ -401654,7 +401654,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -401671,7 +401671,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemListItemLink", "ApiReferenceLink": null, @@ -401688,7 +401688,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemListItemVersion", "ApiReferenceLink": null, @@ -401705,7 +401705,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemPermission", "ApiReferenceLink": null, @@ -401722,7 +401722,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemSubscription", "ApiReferenceLink": null, @@ -401739,7 +401739,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemThumbnail", "ApiReferenceLink": null, @@ -401756,7 +401756,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemUploadSession", "ApiReferenceLink": null, @@ -401798,7 +401798,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveItemVersion", "ApiReferenceLink": null, @@ -401815,7 +401815,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListColumn", "ApiReferenceLink": null, @@ -401832,7 +401832,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListContentType", "ApiReferenceLink": null, @@ -401849,7 +401849,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -401866,7 +401866,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -401883,7 +401883,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListItem", "ApiReferenceLink": null, @@ -401900,7 +401900,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -401917,7 +401917,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListItemLink", "ApiReferenceLink": null, @@ -401934,7 +401934,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListItemVersion", "ApiReferenceLink": null, @@ -401951,7 +401951,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListOperation", "ApiReferenceLink": null, @@ -401968,7 +401968,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveListSubscription", "ApiReferenceLink": null, @@ -401985,7 +401985,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -402002,7 +402002,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootChild", "ApiReferenceLink": null, @@ -402019,7 +402019,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", @@ -402036,7 +402036,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -402053,7 +402053,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootListItemLink", "ApiReferenceLink": null, @@ -402070,7 +402070,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootListItemVersion", "ApiReferenceLink": null, @@ -402087,7 +402087,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootPermission", "ApiReferenceLink": null, @@ -402104,7 +402104,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootSubscription", "ApiReferenceLink": null, @@ -402121,7 +402121,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootThumbnail", "ApiReferenceLink": null, @@ -402138,7 +402138,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootUploadSession", "ApiReferenceLink": null, @@ -402155,7 +402155,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgDriveRootVersion", "ApiReferenceLink": null, @@ -402172,7 +402172,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClass", "ApiReferenceLink": null, @@ -402187,7 +402187,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassAssignment", "ApiReferenceLink": null, @@ -402221,7 +402221,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -402259,7 +402259,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -402293,7 +402293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -402327,7 +402327,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -402344,7 +402344,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -402361,7 +402361,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -402395,7 +402395,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -402429,7 +402429,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -402446,7 +402446,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassMemberByRef", "ApiReferenceLink": null, @@ -402480,7 +402480,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassModule", "ApiReferenceLink": null, @@ -402514,7 +402514,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassModuleResource", "ApiReferenceLink": null, @@ -402548,7 +402548,7 @@ "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationClassTeacherByRef", "ApiReferenceLink": null, @@ -402565,7 +402565,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationMeAssignment", "ApiReferenceLink": null, @@ -402580,7 +402580,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationMeAssignmentCategory", "ApiReferenceLink": null, @@ -402597,7 +402597,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationMeAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -402614,7 +402614,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -402631,7 +402631,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -402648,7 +402648,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -402665,7 +402665,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -402682,7 +402682,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -402699,7 +402699,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationMeRubric", "ApiReferenceLink": null, @@ -402731,7 +402731,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationSchool", "ApiReferenceLink": null, @@ -402746,7 +402746,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationSchoolClassByRef", "ApiReferenceLink": null, @@ -402763,7 +402763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationSchoolUserByRef", "ApiReferenceLink": null, @@ -402780,7 +402780,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUser", "ApiReferenceLink": null, @@ -402795,7 +402795,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUserAssignment", "ApiReferenceLink": null, @@ -402812,7 +402812,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUserAssignmentCategory", "ApiReferenceLink": null, @@ -402829,7 +402829,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUserAssignmentCategoryByRef", "ApiReferenceLink": null, @@ -402846,7 +402846,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -402863,7 +402863,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -402880,7 +402880,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -402897,7 +402897,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -402914,7 +402914,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -402931,7 +402931,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEducationUserRubric", "ApiReferenceLink": null, @@ -402948,7 +402948,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -402963,7 +402963,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "ApiReferenceLink": null, @@ -402980,7 +402980,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -402995,7 +402995,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "ApiReferenceLink": null, @@ -403012,7 +403012,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageIncompatibleGroupByRef", "ApiReferenceLink": null, @@ -403029,7 +403029,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageResourceRoleScope", "ApiReferenceLink": null, @@ -403046,7 +403046,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAssignment", "ApiReferenceLink": null, @@ -403061,7 +403061,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAssignmentPolicy", "ApiReferenceLink": null, @@ -403076,7 +403076,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -403093,7 +403093,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAssignmentPolicyQuestion", "ApiReferenceLink": null, @@ -403110,7 +403110,7 @@ "OutputType": "IMicrosoftGraphAccessPackageQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementAssignmentRequest", "ApiReferenceLink": null, @@ -403125,7 +403125,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementCatalog", "ApiReferenceLink": null, @@ -403140,7 +403140,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -403157,7 +403157,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResource", "ApiReferenceLink": null, @@ -403174,7 +403174,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceRole", "ApiReferenceLink": null, @@ -403199,7 +403199,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -403220,7 +403220,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -403237,7 +403237,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceScope", "ApiReferenceLink": null, @@ -403262,7 +403262,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -403283,7 +403283,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -403300,7 +403300,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -403315,7 +403315,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef", "ApiReferenceLink": null, @@ -403332,7 +403332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef", "ApiReferenceLink": null, @@ -403349,7 +403349,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResource", "ApiReferenceLink": null, @@ -403364,7 +403364,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironment", "ApiReferenceLink": null, @@ -403379,7 +403379,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResource", "ApiReferenceLink": null, @@ -403396,7 +403396,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResourceRole", "ApiReferenceLink": null, @@ -403413,7 +403413,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", "ApiReferenceLink": null, @@ -403430,7 +403430,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResourceScope", "ApiReferenceLink": null, @@ -403447,7 +403447,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", "ApiReferenceLink": null, @@ -403464,7 +403464,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequest", "ApiReferenceLink": null, @@ -403479,7 +403479,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -403496,7 +403496,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResource", "ApiReferenceLink": null, @@ -403513,7 +403513,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceRole", "ApiReferenceLink": null, @@ -403538,7 +403538,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -403559,7 +403559,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -403576,7 +403576,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceScope", "ApiReferenceLink": null, @@ -403601,7 +403601,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -403622,7 +403622,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -403639,7 +403639,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestResourceRole", "ApiReferenceLink": null, @@ -403656,7 +403656,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestResourceRoleResourceScope", "ApiReferenceLink": null, @@ -403673,7 +403673,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestResourceScope", "ApiReferenceLink": null, @@ -403690,7 +403690,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestResourceScopeResourceRole", "ApiReferenceLink": null, @@ -403707,7 +403707,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRole", "ApiReferenceLink": null, @@ -403724,7 +403724,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleResourceScope", "ApiReferenceLink": null, @@ -403741,7 +403741,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScope", "ApiReferenceLink": null, @@ -403756,7 +403756,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeResourceRole", "ApiReferenceLink": null, @@ -403773,7 +403773,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -403790,7 +403790,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeResourceScope", "ApiReferenceLink": null, @@ -403807,7 +403807,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeRoleResourceRole", "ApiReferenceLink": null, @@ -403824,7 +403824,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScope", "ApiReferenceLink": null, @@ -403841,7 +403841,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -403858,7 +403858,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceScope", "ApiReferenceLink": null, @@ -403875,7 +403875,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgEntitlementManagementResourceScopeResourceRole", "ApiReferenceLink": null, @@ -403892,7 +403892,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgExternalConnection", "ApiReferenceLink": null, @@ -403924,7 +403924,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgExternalConnectionGroup", "ApiReferenceLink": null, @@ -403958,7 +403958,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -403992,7 +403992,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgExternalConnectionItem", "ApiReferenceLink": null, @@ -404009,7 +404009,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -404026,7 +404026,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgExternalConnectionOperation", "ApiReferenceLink": null, @@ -404043,7 +404043,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-post-groups?view=graph-rest-1.0", @@ -404083,7 +404083,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupAcceptedSenderByRef", "ApiReferenceLink": null, @@ -404100,7 +404100,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -404117,7 +404117,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupCalendarEvent", "ApiReferenceLink": null, @@ -404134,7 +404134,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupCalendarPermission", "ApiReferenceLink": null, @@ -404151,7 +404151,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupConversation", "ApiReferenceLink": null, @@ -404185,7 +404185,7 @@ "OutputType": "IMicrosoftGraphConversation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupConversationThread", "ApiReferenceLink": null, @@ -404219,7 +404219,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupConversationThreadPostAttachment", "ApiReferenceLink": null, @@ -404236,7 +404236,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupConversationThreadPostAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", @@ -404253,7 +404253,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -404270,7 +404270,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupConversationThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -404287,7 +404287,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupConversationThreadPostInReplyToAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", @@ -404304,7 +404304,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -404321,7 +404321,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDrive", "ApiReferenceLink": null, @@ -404338,7 +404338,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveBundle", "ApiReferenceLink": null, @@ -404355,7 +404355,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItem", "ApiReferenceLink": null, @@ -404372,7 +404372,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -404389,7 +404389,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemChild", "ApiReferenceLink": null, @@ -404406,7 +404406,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", @@ -404423,7 +404423,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -404440,7 +404440,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemListItemLink", "ApiReferenceLink": null, @@ -404457,7 +404457,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -404474,7 +404474,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemPermission", "ApiReferenceLink": null, @@ -404491,7 +404491,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -404508,7 +404508,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -404525,7 +404525,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemUploadSession", "ApiReferenceLink": null, @@ -404542,7 +404542,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveItemVersion", "ApiReferenceLink": null, @@ -404559,7 +404559,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListColumn", "ApiReferenceLink": null, @@ -404576,7 +404576,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListContentType", "ApiReferenceLink": null, @@ -404593,7 +404593,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -404610,7 +404610,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -404627,7 +404627,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListItem", "ApiReferenceLink": null, @@ -404644,7 +404644,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -404661,7 +404661,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListItemLink", "ApiReferenceLink": null, @@ -404678,7 +404678,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -404695,7 +404695,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListOperation", "ApiReferenceLink": null, @@ -404712,7 +404712,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveListSubscription", "ApiReferenceLink": null, @@ -404729,7 +404729,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -404746,7 +404746,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootChild", "ApiReferenceLink": null, @@ -404763,7 +404763,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", @@ -404780,7 +404780,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -404797,7 +404797,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootListItemLink", "ApiReferenceLink": null, @@ -404814,7 +404814,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -404831,7 +404831,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootPermission", "ApiReferenceLink": null, @@ -404848,7 +404848,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -404865,7 +404865,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -404882,7 +404882,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootUploadSession", "ApiReferenceLink": null, @@ -404899,7 +404899,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupDriveRootVersion", "ApiReferenceLink": null, @@ -404916,7 +404916,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupEvent", "ApiReferenceLink": null, @@ -404933,7 +404933,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupEventAttachment", "ApiReferenceLink": null, @@ -404950,7 +404950,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupEventExtension", "ApiReferenceLink": null, @@ -404967,7 +404967,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupEventInstanceAttachment", "ApiReferenceLink": null, @@ -404984,7 +404984,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -405001,7 +405001,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupExtension", "ApiReferenceLink": null, @@ -405018,7 +405018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-post-grouplifecyclepolicies?view=graph-rest-1.0", @@ -405037,7 +405037,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupMemberByRef", "ApiReferenceLink": null, @@ -405054,7 +405054,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -405096,7 +405096,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupOnenoteNotebookSection", "ApiReferenceLink": null, @@ -405138,7 +405138,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -405180,7 +405180,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupOnenotePage", "ApiReferenceLink": null, @@ -405222,7 +405222,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupOnenoteSection", "ApiReferenceLink": null, @@ -405239,7 +405239,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -405256,7 +405256,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -405298,7 +405298,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupOnenoteSectionPage", "ApiReferenceLink": null, @@ -405340,7 +405340,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupOwnerByRef", "ApiReferenceLink": null, @@ -405374,7 +405374,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupPermissionGrant", "ApiReferenceLink": null, @@ -405391,7 +405391,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupRejectedSenderByRef", "ApiReferenceLink": null, @@ -405408,7 +405408,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSetting", "ApiReferenceLink": null, @@ -405427,7 +405427,7 @@ "OutputType": "IMicrosoftGraphGroupSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSettingTemplateGroupSettingTemplate", "ApiReferenceLink": null, @@ -405442,7 +405442,7 @@ "OutputType": "IMicrosoftGraphGroupSettingTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -405459,7 +405459,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -405476,7 +405476,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteColumn", "ApiReferenceLink": null, @@ -405493,7 +405493,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteContentType", "ApiReferenceLink": null, @@ -405510,7 +405510,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -405527,7 +405527,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -405544,7 +405544,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteGetByPathColumn", "ApiReferenceLink": null, @@ -405565,7 +405565,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteGetByPathContentType", "ApiReferenceLink": null, @@ -405586,7 +405586,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteGetByPathList", "ApiReferenceLink": null, @@ -405607,7 +405607,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteGetByPathOperation", "ApiReferenceLink": null, @@ -405628,7 +405628,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteGetByPathPage", "ApiReferenceLink": null, @@ -405649,7 +405649,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteGetByPathPermission", "ApiReferenceLink": null, @@ -405670,7 +405670,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -405691,7 +405691,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteList", "ApiReferenceLink": null, @@ -405708,7 +405708,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListColumn", "ApiReferenceLink": null, @@ -405725,7 +405725,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListContentType", "ApiReferenceLink": null, @@ -405742,7 +405742,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -405759,7 +405759,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -405776,7 +405776,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListItem", "ApiReferenceLink": null, @@ -405793,7 +405793,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -405810,7 +405810,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListItemLink", "ApiReferenceLink": null, @@ -405827,7 +405827,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -405844,7 +405844,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListOperation", "ApiReferenceLink": null, @@ -405861,7 +405861,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteListSubscription", "ApiReferenceLink": null, @@ -405878,7 +405878,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -405895,7 +405895,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -405912,7 +405912,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -405929,7 +405929,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -405946,7 +405946,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -405963,7 +405963,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -405980,7 +405980,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -405997,7 +405997,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -406014,7 +406014,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -406031,7 +406031,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -406048,7 +406048,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -406065,7 +406065,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -406082,7 +406082,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -406099,7 +406099,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -406116,7 +406116,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteOperation", "ApiReferenceLink": null, @@ -406133,7 +406133,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSitePage", "ApiReferenceLink": null, @@ -406150,7 +406150,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -406167,7 +406167,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -406184,7 +406184,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -406201,7 +406201,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -406218,7 +406218,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -406235,7 +406235,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSitePermission", "ApiReferenceLink": null, @@ -406252,7 +406252,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStore", "ApiReferenceLink": null, @@ -406269,7 +406269,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -406290,7 +406290,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -406311,7 +406311,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -406340,7 +406340,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -406369,7 +406369,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -406390,7 +406390,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -406411,7 +406411,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -406432,7 +406432,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -406453,7 +406453,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -406474,7 +406474,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -406495,7 +406495,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -406524,7 +406524,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -406553,7 +406553,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -406574,7 +406574,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -406603,7 +406603,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -406632,7 +406632,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -406653,7 +406653,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -406674,7 +406674,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -406695,7 +406695,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -406716,7 +406716,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -406737,7 +406737,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -406758,7 +406758,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -406779,7 +406779,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -406800,7 +406800,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -406821,7 +406821,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -406842,7 +406842,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamChannel", "ApiReferenceLink": null, @@ -406859,7 +406859,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamChannelMember", "ApiReferenceLink": null, @@ -406876,7 +406876,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -406893,7 +406893,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -406910,7 +406910,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -406927,7 +406927,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -406944,7 +406944,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -406961,7 +406961,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamChannelTab", "ApiReferenceLink": null, @@ -406978,7 +406978,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamInstalledApp", "ApiReferenceLink": null, @@ -406995,7 +406995,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamMember", "ApiReferenceLink": null, @@ -407012,7 +407012,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamOperation", "ApiReferenceLink": null, @@ -407029,7 +407029,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -407046,7 +407046,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -407063,7 +407063,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -407080,7 +407080,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -407097,7 +407097,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -407114,7 +407114,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -407131,7 +407131,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -407148,7 +407148,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -407165,7 +407165,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -407182,7 +407182,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -407199,7 +407199,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -407216,7 +407216,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -407233,7 +407233,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamScheduleShift", "ApiReferenceLink": null, @@ -407250,7 +407250,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -407267,7 +407267,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -407284,7 +407284,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -407301,7 +407301,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -407318,7 +407318,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamTag", "ApiReferenceLink": null, @@ -407335,7 +407335,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupTeamTagMember", "ApiReferenceLink": null, @@ -407352,7 +407352,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupThread", "ApiReferenceLink": null, @@ -407386,7 +407386,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupThreadPostAttachment", "ApiReferenceLink": null, @@ -407403,7 +407403,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupThreadPostAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", @@ -407420,7 +407420,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupThreadPostExtension", "ApiReferenceLink": null, @@ -407437,7 +407437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -407454,7 +407454,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupThreadPostInReplyToAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", @@ -407471,7 +407471,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -407488,7 +407488,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityApiConnector", "ApiReferenceLink": null, @@ -407503,7 +407503,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -407518,7 +407518,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -407533,7 +407533,7 @@ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityB2XUserFlowIdentityProviderByRef", "ApiReferenceLink": null, @@ -407550,7 +407550,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -407567,7 +407567,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -407584,7 +407584,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -407601,7 +407601,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -407618,7 +407618,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -407633,7 +407633,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -407665,7 +407665,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -407697,7 +407697,7 @@ "OutputType": "IMicrosoftGraphNamedLocation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -407737,7 +407737,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -407752,7 +407752,7 @@ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -407767,7 +407767,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -407784,7 +407784,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -407801,7 +407801,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -407818,7 +407818,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -407835,7 +407835,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -407852,7 +407852,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -407869,7 +407869,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -407886,7 +407886,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -407901,7 +407901,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -407918,7 +407918,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewhistoryinstance-generatedownloaduri?view=graph-rest-1.0", @@ -407933,7 +407933,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -407948,7 +407948,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -407965,7 +407965,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", "ApiReferenceLink": null, @@ -407982,7 +407982,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -407997,7 +407997,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -408012,7 +408012,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowNewVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-1.0", @@ -408029,7 +408029,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -408046,7 +408046,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowNewVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-1.0", @@ -408063,7 +408063,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -408080,7 +408080,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -408097,7 +408097,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -408112,7 +408112,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", "ApiReferenceLink": null, @@ -408129,7 +408129,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -408144,7 +408144,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -408159,7 +408159,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -408191,7 +408191,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -408206,7 +408206,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -408221,7 +408221,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -408253,7 +408253,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -408268,7 +408268,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -408287,7 +408287,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -408304,7 +408304,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -408321,7 +408321,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -408338,7 +408338,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -408355,7 +408355,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityProvider", "ApiReferenceLink": null, @@ -408370,7 +408370,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -408385,7 +408385,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -408400,7 +408400,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -408417,7 +408417,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgInvitation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/invitation-post?view=graph-rest-1.0", @@ -408457,7 +408457,7 @@ "OutputType": "IMicrosoftGraphInvitation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-post?view=graph-rest-1.0", @@ -408489,7 +408489,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgOrganization", "ApiReferenceLink": null, @@ -408504,7 +408504,7 @@ "OutputType": "IMicrosoftGraphOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -408538,7 +408538,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgOrganizationCertificateBasedAuthConfiguration", "ApiReferenceLink": null, @@ -408555,7 +408555,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgOrganizationExtension", "ApiReferenceLink": null, @@ -408572,7 +408572,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -408589,7 +408589,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPlannerBucket", "ApiReferenceLink": null, @@ -408629,7 +408629,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPlannerPlan", "ApiReferenceLink": null, @@ -408669,7 +408669,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPlannerTask", "ApiReferenceLink": null, @@ -408709,7 +408709,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -408741,7 +408741,7 @@ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -408773,7 +408773,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -408788,7 +408788,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -408820,7 +408820,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -408837,7 +408837,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -408869,7 +408869,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -408884,7 +408884,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -408899,7 +408899,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyFeatureRolloutPolicyApplyTo", "ApiReferenceLink": null, @@ -408916,7 +408916,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyFeatureRolloutPolicyApplyToByRef", "ApiReferenceLink": null, @@ -408933,7 +408933,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -408965,7 +408965,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -408980,7 +408980,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -408997,7 +408997,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -409014,7 +409014,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -409029,7 +409029,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -409044,7 +409044,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -409061,7 +409061,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -409078,7 +409078,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -409110,7 +409110,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -409142,7 +409142,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintConnector", "ApiReferenceLink": null, @@ -409157,7 +409157,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintOperation", "ApiReferenceLink": null, @@ -409172,7 +409172,7 @@ "OutputType": "IMicrosoftGraphPrintOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintPrinter", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-create?view=graph-rest-1.0", @@ -409212,7 +409212,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintPrinterJob", "ApiReferenceLink": null, @@ -409270,7 +409270,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -409287,7 +409287,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintPrinterJobDocumentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-1.0", @@ -409329,7 +409329,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintPrinterJobTask", "ApiReferenceLink": null, @@ -409346,7 +409346,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -409380,7 +409380,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintService", "ApiReferenceLink": null, @@ -409395,7 +409395,7 @@ "OutputType": "IMicrosoftGraphPrintService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintServiceEndpoint", "ApiReferenceLink": null, @@ -409412,7 +409412,7 @@ "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintShare", "ApiReferenceLink": null, @@ -409427,7 +409427,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintShareAllowedGroupByRef", "ApiReferenceLink": null, @@ -409444,7 +409444,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintShareAllowedUserByRef", "ApiReferenceLink": null, @@ -409461,7 +409461,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintShareJob", "ApiReferenceLink": null, @@ -409511,7 +409511,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintShareJobDocument", "ApiReferenceLink": null, @@ -409528,7 +409528,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintShareJobDocumentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-1.0", @@ -409570,7 +409570,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintShareJobTask", "ApiReferenceLink": null, @@ -409587,7 +409587,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintTaskDefinition", "ApiReferenceLink": null, @@ -409602,7 +409602,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -409619,7 +409619,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -409634,7 +409634,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -409651,7 +409651,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -409666,7 +409666,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -409681,7 +409681,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -409696,7 +409696,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRiskDetection", "ApiReferenceLink": null, @@ -409711,7 +409711,7 @@ "OutputType": "IMicrosoftGraphRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRiskyServicePrincipal", "ApiReferenceLink": null, @@ -409726,7 +409726,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -409743,7 +409743,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRiskyUser", "ApiReferenceLink": null, @@ -409758,7 +409758,7 @@ "OutputType": "IMicrosoftGraphRiskyUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRiskyUserHistory", "ApiReferenceLink": null, @@ -409775,7 +409775,7 @@ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -409790,7 +409790,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -409807,7 +409807,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -409822,7 +409822,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -409837,7 +409837,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -409852,7 +409852,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -409900,7 +409900,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -409932,7 +409932,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -409949,7 +409949,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -409964,7 +409964,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -409979,7 +409979,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -410011,7 +410011,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -410026,7 +410026,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -410043,7 +410043,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -410075,7 +410075,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -410090,7 +410090,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -410105,7 +410105,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -410120,7 +410120,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -410135,7 +410135,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -410152,7 +410152,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -410167,7 +410167,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -410182,7 +410182,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -410197,7 +410197,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-post-schemaextensions?view=graph-rest-1.0", @@ -410229,7 +410229,7 @@ "OutputType": "IMicrosoftGraphSchemaExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSearchAcronym", "ApiReferenceLink": null, @@ -410261,7 +410261,7 @@ "OutputType": "IMicrosoftGraphSearchAcronym" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSearchBookmark", "ApiReferenceLink": null, @@ -410293,7 +410293,7 @@ "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSearchQna", "ApiReferenceLink": null, @@ -410325,7 +410325,7 @@ "OutputType": "IMicrosoftGraphSearchQna" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAlert", "ApiReferenceLink": null, @@ -410340,7 +410340,7 @@ "OutputType": "IMicrosoftGraphAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAlertV2", "ApiReferenceLink": null, @@ -410355,7 +410355,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulation", "ApiReferenceLink": null, @@ -410370,7 +410370,7 @@ "OutputType": "IMicrosoftGraphSimulation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -410385,7 +410385,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -410402,7 +410402,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -410417,7 +410417,7 @@ "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -410434,7 +410434,7 @@ "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -410449,7 +410449,7 @@ "OutputType": "IMicrosoftGraphLandingPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -410466,7 +410466,7 @@ "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -410481,7 +410481,7 @@ "OutputType": "IMicrosoftGraphLoginPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -410496,7 +410496,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -410511,7 +410511,7 @@ "OutputType": "IMicrosoftGraphPayload" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -410526,7 +410526,7 @@ "OutputType": "IMicrosoftGraphTraining" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -410543,7 +410543,7 @@ "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -410575,7 +410575,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -410609,7 +410609,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -410643,7 +410643,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -410677,7 +410677,7 @@ "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -410711,7 +410711,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -410745,7 +410745,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -410762,7 +410762,7 @@ "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -410796,7 +410796,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -410830,7 +410830,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -410864,7 +410864,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -410881,7 +410881,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -410915,7 +410915,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityIncident", "ApiReferenceLink": null, @@ -410930,7 +410930,7 @@ "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityLabelAuthority", "ApiReferenceLink": null, @@ -410945,7 +410945,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityLabelCategory", "ApiReferenceLink": null, @@ -410960,7 +410960,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -410977,7 +410977,7 @@ "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityLabelCitation", "ApiReferenceLink": null, @@ -410992,7 +410992,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityLabelDepartment", "ApiReferenceLink": null, @@ -411007,7 +411007,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -411022,7 +411022,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -411037,7 +411037,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -411054,7 +411054,7 @@ "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecuritySecureScore", "ApiReferenceLink": null, @@ -411069,7 +411069,7 @@ "OutputType": "IMicrosoftGraphSecureScore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -411084,7 +411084,7 @@ "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -411099,7 +411099,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -411116,7 +411116,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -411131,7 +411131,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -411146,7 +411146,7 @@ "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -411161,7 +411161,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -411176,7 +411176,7 @@ "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -411191,7 +411191,7 @@ "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -411206,7 +411206,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -411221,7 +411221,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -411236,7 +411236,7 @@ "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -411251,7 +411251,7 @@ "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -411266,7 +411266,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -411281,7 +411281,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -411296,7 +411296,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -411311,7 +411311,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -411326,7 +411326,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -411341,7 +411341,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -411358,7 +411358,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -411373,7 +411373,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -411388,7 +411388,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -411403,7 +411403,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -411418,7 +411418,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -411433,7 +411433,7 @@ "OutputType": "IMicrosoftGraphServiceHealth" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -411450,7 +411450,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -411465,7 +411465,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -411480,7 +411480,7 @@ "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -411497,7 +411497,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-1.0", @@ -411537,7 +411537,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -411579,7 +411579,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -411621,7 +411621,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalClaimMappingPolicyByRef", "ApiReferenceLink": null, @@ -411679,7 +411679,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -411696,7 +411696,7 @@ "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -411713,7 +411713,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "ApiReferenceLink": null, @@ -411771,7 +411771,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalOwnerByRef", "ApiReferenceLink": null, @@ -411821,7 +411821,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -411838,7 +411838,7 @@ "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -411853,7 +411853,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -411887,7 +411887,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalSynchronizationJobOnDemand", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0", @@ -411921,7 +411921,7 @@ "OutputType": "IMicrosoftGraphStringKeyStringValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -411938,7 +411938,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -411955,7 +411955,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -411972,7 +411972,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareListColumn", "ApiReferenceLink": null, @@ -411989,7 +411989,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareListContentType", "ApiReferenceLink": null, @@ -412006,7 +412006,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareListContentTypeColumn", "ApiReferenceLink": null, @@ -412023,7 +412023,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -412040,7 +412040,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareListItem", "ApiReferenceLink": null, @@ -412057,7 +412057,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -412078,7 +412078,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareListItemVersion", "ApiReferenceLink": null, @@ -412099,7 +412099,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareListOperation", "ApiReferenceLink": null, @@ -412116,7 +412116,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareListSubscription", "ApiReferenceLink": null, @@ -412133,7 +412133,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": null, @@ -412148,7 +412148,7 @@ "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -412165,7 +412165,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -412182,7 +412182,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteColumn", "ApiReferenceLink": null, @@ -412216,7 +412216,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteContentType", "ApiReferenceLink": null, @@ -412250,7 +412250,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteContentTypeColumn", "ApiReferenceLink": null, @@ -412284,7 +412284,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -412301,7 +412301,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteGetByPathColumn", "ApiReferenceLink": null, @@ -412322,7 +412322,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteGetByPathContentType", "ApiReferenceLink": null, @@ -412343,7 +412343,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteGetByPathList", "ApiReferenceLink": null, @@ -412364,7 +412364,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteGetByPathOperation", "ApiReferenceLink": null, @@ -412385,7 +412385,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteGetByPathPage", "ApiReferenceLink": null, @@ -412406,7 +412406,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteGetByPathPermission", "ApiReferenceLink": null, @@ -412427,7 +412427,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -412448,7 +412448,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteList", "ApiReferenceLink": null, @@ -412482,7 +412482,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListColumn", "ApiReferenceLink": null, @@ -412516,7 +412516,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListContentType", "ApiReferenceLink": null, @@ -412533,7 +412533,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -412567,7 +412567,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -412584,7 +412584,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListItem", "ApiReferenceLink": null, @@ -412601,7 +412601,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -412651,7 +412651,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListItemLink", "ApiReferenceLink": null, @@ -412693,7 +412693,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListItemVersion", "ApiReferenceLink": null, @@ -412710,7 +412710,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListOperation", "ApiReferenceLink": null, @@ -412727,7 +412727,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteListSubscription", "ApiReferenceLink": null, @@ -412744,7 +412744,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -412786,7 +412786,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -412828,7 +412828,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -412870,7 +412870,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteOnenotePage", "ApiReferenceLink": null, @@ -412912,7 +412912,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteOnenoteSection", "ApiReferenceLink": null, @@ -412929,7 +412929,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -412946,7 +412946,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -412988,7 +412988,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -413030,7 +413030,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteOperation", "ApiReferenceLink": null, @@ -413047,7 +413047,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSitePage", "ApiReferenceLink": null, @@ -413064,7 +413064,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -413081,7 +413081,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -413098,7 +413098,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -413115,7 +413115,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -413132,7 +413132,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -413149,7 +413149,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSitePermission", "ApiReferenceLink": null, @@ -413166,7 +413166,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStore", "ApiReferenceLink": null, @@ -413183,7 +413183,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreGroup", "ApiReferenceLink": null, @@ -413204,7 +413204,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -413225,7 +413225,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -413254,7 +413254,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -413283,7 +413283,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -413304,7 +413304,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -413325,7 +413325,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -413346,7 +413346,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -413367,7 +413367,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -413388,7 +413388,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSet", "ApiReferenceLink": null, @@ -413409,7 +413409,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -413438,7 +413438,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -413467,7 +413467,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -413488,7 +413488,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -413517,7 +413517,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -413546,7 +413546,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -413567,7 +413567,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -413588,7 +413588,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -413609,7 +413609,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -413630,7 +413630,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -413651,7 +413651,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -413672,7 +413672,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -413693,7 +413693,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -413714,7 +413714,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -413735,7 +413735,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -413756,7 +413756,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSubscribedSku", "ApiReferenceLink": null, @@ -413771,7 +413771,7 @@ "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-post-subscriptions?view=graph-rest-1.0", @@ -413786,7 +413786,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-post?view=graph-rest-1.0", @@ -413834,7 +413834,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamChannel", "ApiReferenceLink": null, @@ -413892,7 +413892,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0", @@ -413907,7 +413907,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamChannelMember", "ApiReferenceLink": null, @@ -413924,7 +413924,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamChannelMessage", "ApiReferenceLink": null, @@ -413966,7 +413966,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -413983,7 +413983,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamChannelMessageReply", "ApiReferenceLink": null, @@ -414025,7 +414025,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -414042,7 +414042,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -414059,7 +414059,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamChannelTab", "ApiReferenceLink": null, @@ -414149,7 +414149,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamInstalledApp", "ApiReferenceLink": null, @@ -414255,7 +414255,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamMember", "ApiReferenceLink": null, @@ -414272,7 +414272,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamOperation", "ApiReferenceLink": null, @@ -414289,7 +414289,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamPermissionGrant", "ApiReferenceLink": null, @@ -414306,7 +414306,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamPrimaryChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0", @@ -414321,7 +414321,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -414338,7 +414338,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -414355,7 +414355,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -414372,7 +414372,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -414389,7 +414389,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -414406,7 +414406,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -414423,7 +414423,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -414440,7 +414440,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -414474,7 +414474,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -414516,7 +414516,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -414550,7 +414550,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -414584,7 +414584,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamScheduleShift", "ApiReferenceLink": null, @@ -414618,7 +414618,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -414652,7 +414652,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -414686,7 +414686,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -414720,7 +414720,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -414737,7 +414737,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamTag", "ApiReferenceLink": null, @@ -414771,7 +414771,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamTagMember", "ApiReferenceLink": null, @@ -414788,7 +414788,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedChat", "ApiReferenceLink": null, @@ -414803,7 +414803,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -414818,7 +414818,7 @@ "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -414835,7 +414835,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0", @@ -414850,7 +414850,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -414867,7 +414867,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -414884,7 +414884,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -414901,7 +414901,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -414918,7 +414918,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -414935,7 +414935,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -414952,7 +414952,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -414969,7 +414969,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -414984,7 +414984,7 @@ "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -414999,7 +414999,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -415016,7 +415016,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -415031,7 +415031,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -415048,7 +415048,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -415065,7 +415065,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -415082,7 +415082,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -415097,7 +415097,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-create?view=graph-rest-1.0", @@ -415161,7 +415161,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserActivity", "ApiReferenceLink": null, @@ -415178,7 +415178,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserActivityHistoryItem", "ApiReferenceLink": null, @@ -415195,7 +415195,7 @@ "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserAppRoleAssignment", "ApiReferenceLink": null, @@ -415212,7 +415212,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -415246,7 +415246,7 @@ "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserAuthenticationMethod", "ApiReferenceLink": null, @@ -415263,7 +415263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserAuthenticationOperation", "ApiReferenceLink": null, @@ -415280,7 +415280,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -415314,7 +415314,7 @@ "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserAuthenticationTemporaryAccessPassMethod", "ApiReferenceLink": null, @@ -415331,7 +415331,7 @@ "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserCalendar", "ApiReferenceLink": null, @@ -415348,7 +415348,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserCalendarEvent", "ApiReferenceLink": null, @@ -415365,7 +415365,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserCalendarGroup", "ApiReferenceLink": null, @@ -415382,7 +415382,7 @@ "OutputType": "IMicrosoftGraphCalendarGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserCalendarGroupCalendar", "ApiReferenceLink": null, @@ -415399,7 +415399,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserCalendarPermission", "ApiReferenceLink": null, @@ -415420,7 +415420,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChat", "ApiReferenceLink": null, @@ -415437,7 +415437,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChatInstalledApp", "ApiReferenceLink": null, @@ -415454,7 +415454,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChatMember", "ApiReferenceLink": null, @@ -415471,7 +415471,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChatMessage", "ApiReferenceLink": null, @@ -415488,7 +415488,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -415505,7 +415505,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChatMessageReply", "ApiReferenceLink": null, @@ -415522,7 +415522,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -415539,7 +415539,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChatPermissionGrant", "ApiReferenceLink": null, @@ -415556,7 +415556,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChatPinnedMessage", "ApiReferenceLink": null, @@ -415573,7 +415573,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserChatTab", "ApiReferenceLink": null, @@ -415590,7 +415590,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserContact", "ApiReferenceLink": null, @@ -415607,7 +415607,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserContactExtension", "ApiReferenceLink": null, @@ -415624,7 +415624,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserContactFolder", "ApiReferenceLink": null, @@ -415641,7 +415641,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -415658,7 +415658,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -415675,7 +415675,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -415692,7 +415692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserContactFolderContact", "ApiReferenceLink": null, @@ -415709,7 +415709,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -415726,7 +415726,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDefaultCalendarEvent", "ApiReferenceLink": null, @@ -415743,7 +415743,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -415760,7 +415760,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDrive", "ApiReferenceLink": null, @@ -415777,7 +415777,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveBundle", "ApiReferenceLink": null, @@ -415794,7 +415794,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItem", "ApiReferenceLink": null, @@ -415811,7 +415811,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -415828,7 +415828,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemChild", "ApiReferenceLink": null, @@ -415845,7 +415845,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", @@ -415862,7 +415862,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -415879,7 +415879,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemListItemLink", "ApiReferenceLink": null, @@ -415896,7 +415896,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -415913,7 +415913,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemPermission", "ApiReferenceLink": null, @@ -415930,7 +415930,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemSubscription", "ApiReferenceLink": null, @@ -415947,7 +415947,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -415964,7 +415964,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemUploadSession", "ApiReferenceLink": null, @@ -415981,7 +415981,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveItemVersion", "ApiReferenceLink": null, @@ -415998,7 +415998,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListColumn", "ApiReferenceLink": null, @@ -416015,7 +416015,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListContentType", "ApiReferenceLink": null, @@ -416032,7 +416032,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -416049,7 +416049,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -416066,7 +416066,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListItem", "ApiReferenceLink": null, @@ -416083,7 +416083,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -416100,7 +416100,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListItemLink", "ApiReferenceLink": null, @@ -416117,7 +416117,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListItemVersion", "ApiReferenceLink": null, @@ -416134,7 +416134,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListOperation", "ApiReferenceLink": null, @@ -416151,7 +416151,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveListSubscription", "ApiReferenceLink": null, @@ -416168,7 +416168,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -416185,7 +416185,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootChild", "ApiReferenceLink": null, @@ -416202,7 +416202,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootLink", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", @@ -416219,7 +416219,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -416236,7 +416236,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootListItemLink", "ApiReferenceLink": null, @@ -416253,7 +416253,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -416270,7 +416270,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootPermission", "ApiReferenceLink": null, @@ -416287,7 +416287,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootSubscription", "ApiReferenceLink": null, @@ -416304,7 +416304,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -416321,7 +416321,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootUploadSession", "ApiReferenceLink": null, @@ -416338,7 +416338,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserDriveRootVersion", "ApiReferenceLink": null, @@ -416355,7 +416355,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserEvent", "ApiReferenceLink": null, @@ -416372,7 +416372,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserEventAttachment", "ApiReferenceLink": null, @@ -416389,7 +416389,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserEventAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", @@ -416423,7 +416423,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserEventExtension", "ApiReferenceLink": null, @@ -416440,7 +416440,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserEventInstanceAttachment", "ApiReferenceLink": null, @@ -416457,7 +416457,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserEventInstanceAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", @@ -416474,7 +416474,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserEventInstanceExtension", "ApiReferenceLink": null, @@ -416491,7 +416491,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserExtension", "ApiReferenceLink": null, @@ -416508,7 +416508,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserInferenceClassificationOverride", "ApiReferenceLink": null, @@ -416525,7 +416525,7 @@ "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolder", "ApiReferenceLink": null, @@ -416542,7 +416542,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -416559,7 +416559,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -416576,7 +416576,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageAttachment", "ApiReferenceLink": null, @@ -416593,7 +416593,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", @@ -416610,7 +416610,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -416627,7 +416627,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageForward", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-1.0", @@ -416644,7 +416644,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageReply", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-1.0", @@ -416661,7 +416661,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageReplyAll", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-1.0", @@ -416678,7 +416678,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageRule", "ApiReferenceLink": null, @@ -416695,7 +416695,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderMessage", "ApiReferenceLink": null, @@ -416712,7 +416712,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderMessageAttachment", "ApiReferenceLink": null, @@ -416729,7 +416729,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderMessageAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", @@ -416746,7 +416746,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -416763,7 +416763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderMessageForward", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-1.0", @@ -416780,7 +416780,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderMessageReply", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-1.0", @@ -416797,7 +416797,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderMessageReplyAll", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-1.0", @@ -416814,7 +416814,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMailFolderMessageRule", "ApiReferenceLink": null, @@ -416831,7 +416831,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserManagedDevice", "ApiReferenceLink": null, @@ -416848,7 +416848,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -416865,7 +416865,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -416882,7 +416882,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -416899,7 +416899,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserManagedDeviceLogCollectionResponseDownloadUrl", "ApiReferenceLink": null, @@ -416914,7 +416914,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserManagedDeviceWindowsDefenderUpdateSignature", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderupdatesignatures?view=graph-rest-1.0", @@ -416929,7 +416929,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -416946,7 +416946,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMessage", "ApiReferenceLink": null, @@ -416963,7 +416963,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMessageAttachment", "ApiReferenceLink": null, @@ -416980,7 +416980,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMessageAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", @@ -417014,7 +417014,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMessageExtension", "ApiReferenceLink": null, @@ -417031,7 +417031,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMessageForward", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-1.0", @@ -417048,7 +417048,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMessageReply", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-1.0", @@ -417065,7 +417065,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserMessageReplyAll", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-1.0", @@ -417082,7 +417082,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnenoteNotebook", "ApiReferenceLink": null, @@ -417124,7 +417124,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnenoteNotebookSection", "ApiReferenceLink": null, @@ -417166,7 +417166,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -417208,7 +417208,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnenotePage", "ApiReferenceLink": null, @@ -417250,7 +417250,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnenoteSection", "ApiReferenceLink": null, @@ -417267,7 +417267,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -417284,7 +417284,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -417326,7 +417326,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnenoteSectionPage", "ApiReferenceLink": null, @@ -417368,7 +417368,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnlineMeeting", "ApiReferenceLink": null, @@ -417402,7 +417402,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -417419,7 +417419,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -417436,7 +417436,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -417453,7 +417453,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -417470,7 +417470,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserOutlookMasterCategory", "ApiReferenceLink": null, @@ -417487,7 +417487,7 @@ "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -417504,7 +417504,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserSettingWindows", "ApiReferenceLink": null, @@ -417521,7 +417521,7 @@ "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -417538,7 +417538,7 @@ "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -417555,7 +417555,7 @@ "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTeamworkInstalledApp", "ApiReferenceLink": null, @@ -417669,7 +417669,7 @@ "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTodoList", "ApiReferenceLink": null, @@ -417703,7 +417703,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTodoListExtension", "ApiReferenceLink": null, @@ -417720,7 +417720,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTodoListTask", "ApiReferenceLink": null, @@ -417754,7 +417754,7 @@ "OutputType": "IMicrosoftGraphTodoTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTodoListTaskAttachment", "ApiReferenceLink": null, @@ -417788,7 +417788,7 @@ "OutputType": "IMicrosoftGraphAttachmentBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTodoListTaskAttachmentUploadSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/taskfileattachment-createuploadsession?view=graph-rest-1.0", @@ -417822,7 +417822,7 @@ "OutputType": "IMicrosoftGraphUploadSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTodoListTaskChecklistItem", "ApiReferenceLink": null, @@ -417856,7 +417856,7 @@ "OutputType": "IMicrosoftGraphChecklistItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTodoListTaskExtension", "ApiReferenceLink": null, @@ -417873,7 +417873,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgUserTodoListTaskLinkedResource", "ApiReferenceLink": null, @@ -417907,7 +417907,7 @@ "OutputType": "IMicrosoftGraphLinkedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgVirtualEvent", "ApiReferenceLink": null, @@ -417922,7 +417922,7 @@ "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgVirtualEventSession", "ApiReferenceLink": null, @@ -417939,7 +417939,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -417956,7 +417956,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -417973,7 +417973,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgVirtualEventWebinar", "ApiReferenceLink": null, @@ -417988,7 +417988,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -418005,7 +418005,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -418022,7 +418022,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -418039,7 +418039,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -418056,7 +418056,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Ping-MgBetaApplicationSynchronization", "ApiReferenceLink": null, @@ -418071,7 +418071,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Ping-MgBetaServicePrincipalSynchronization", "ApiReferenceLink": null, @@ -418086,7 +418086,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaBookingBusiness", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-beta", @@ -418103,7 +418103,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaComplianceEdiscoveryCaseCustodian", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-release?view=graph-rest-beta", @@ -418135,7 +418135,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-noncustodialdatasource-release?view=graph-rest-beta", @@ -418167,7 +418167,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", @@ -418182,7 +418182,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaEducationClassAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-beta", @@ -418214,7 +418214,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaEducationClassModule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-publish?view=graph-rest-beta", @@ -418246,7 +418246,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaEducationMeAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-beta", @@ -418261,7 +418261,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaEducationUserAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-beta", @@ -418276,7 +418276,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaGroupDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", @@ -418291,7 +418291,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaGroupSiteContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", @@ -418306,7 +418306,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaGroupSiteListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", @@ -418321,7 +418321,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-release?view=graph-rest-beta", @@ -418353,7 +418353,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-release?view=graph-rest-beta", @@ -418385,7 +418385,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaShareListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", @@ -418400,7 +418400,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaSiteContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", @@ -418415,7 +418415,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaSiteListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", @@ -418430,7 +418430,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaUserDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", @@ -418445,7 +418445,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBetaVirtualEvent", "ApiReferenceLink": null, @@ -418460,7 +418460,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgBookingBusiness", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-1.0", @@ -418475,7 +418475,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", @@ -418490,7 +418490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgEducationClassAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-1.0", @@ -418522,7 +418522,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgEducationClassModule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-publish?view=graph-rest-1.0", @@ -418554,7 +418554,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgEducationMeAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-1.0", @@ -418569,7 +418569,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgEducationUserAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-1.0", @@ -418584,7 +418584,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgGroupDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", @@ -418599,7 +418599,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgGroupSiteContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", @@ -418614,7 +418614,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgGroupSiteListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", @@ -418629,7 +418629,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-release?view=graph-rest-1.0", @@ -418661,7 +418661,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-release?view=graph-rest-1.0", @@ -418693,7 +418693,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgShareListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", @@ -418708,7 +418708,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgSiteContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", @@ -418723,7 +418723,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgSiteListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", @@ -418738,7 +418738,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Publish-MgUserDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", @@ -418753,7 +418753,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Register-MgBetaPrivilegedAccessResource", "ApiReferenceLink": null, @@ -418770,7 +418770,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAdminEdge", "ApiReferenceLink": null, @@ -418784,7 +418784,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAdminEdgeInternetExplorerMode", "ApiReferenceLink": null, @@ -418798,7 +418798,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -418813,7 +418813,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -418828,7 +418828,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -418843,7 +418843,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -418858,7 +418858,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAdminSharepoint", "ApiReferenceLink": null, @@ -418872,7 +418872,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAdminSharepointSetting", "ApiReferenceLink": null, @@ -418886,7 +418886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAgreement", "ApiReferenceLink": null, @@ -418901,7 +418901,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAgreementAcceptance", "ApiReferenceLink": null, @@ -418916,7 +418916,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAgreementFile", "ApiReferenceLink": null, @@ -418931,7 +418931,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAgreementFileLocalization", "ApiReferenceLink": null, @@ -418946,7 +418946,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -418961,7 +418961,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAgreementFileVersion", "ApiReferenceLink": null, @@ -418991,7 +418991,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAppCatalogTeamApp", "ApiReferenceLink": null, @@ -419031,7 +419031,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -419071,7 +419071,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgAppCatalogTeamAppDefinitionBot", "ApiReferenceLink": null, @@ -419086,7 +419086,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0", @@ -419133,7 +419133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0", @@ -419148,7 +419148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0", @@ -419163,7 +419163,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationExtensionProperty", "ApiReferenceLink": null, @@ -419203,7 +419203,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -419235,7 +419235,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationFederatedIdentityCredentialByName", "ApiReferenceLink": null, @@ -419250,7 +419250,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgApplicationKey", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removekey?view=graph-rest-1.0", @@ -419332,7 +419332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgApplicationPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-1.0", @@ -419374,7 +419374,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationSynchronization", "ApiReferenceLink": null, @@ -419389,7 +419389,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -419404,7 +419404,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -419419,7 +419419,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationJobSchema", "ApiReferenceLink": null, @@ -419434,7 +419434,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -419449,7 +419449,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -419464,7 +419464,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -419496,7 +419496,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -419623,7 +419623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAccessReview", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-delete?view=graph-rest-beta", @@ -419655,7 +419655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewDecision", "ApiReferenceLink": null, @@ -419670,7 +419670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewInstance", "ApiReferenceLink": null, @@ -419685,7 +419685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewInstanceDecision", "ApiReferenceLink": null, @@ -419700,7 +419700,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewInstanceMyDecision", "ApiReferenceLink": null, @@ -419715,7 +419715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewInstanceReviewer", "ApiReferenceLink": null, @@ -419730,7 +419730,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewMyDecision", "ApiReferenceLink": null, @@ -419745,7 +419745,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewReviewer", "ApiReferenceLink": null, @@ -419777,7 +419777,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminEdge", "ApiReferenceLink": null, @@ -419791,7 +419791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminEdgeInternetExplorerMode", "ApiReferenceLink": null, @@ -419805,7 +419805,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -419820,7 +419820,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -419835,7 +419835,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -419850,7 +419850,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdministrativeUnit", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-delete?view=graph-rest-beta", @@ -419865,7 +419865,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -419880,7 +419880,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdministrativeUnitMemberByRef", "ApiReferenceLink": null, @@ -419910,7 +419910,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -419925,7 +419925,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminPeople", "ApiReferenceLink": null, @@ -419939,7 +419939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminPeopleItemInsight", "ApiReferenceLink": null, @@ -419953,7 +419953,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -419968,7 +419968,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminPeoplePronoun", "ApiReferenceLink": null, @@ -419982,7 +419982,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminReportSetting", "ApiReferenceLink": null, @@ -419996,7 +419996,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminSharepoint", "ApiReferenceLink": null, @@ -420010,7 +420010,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAdminSharepointSetting", "ApiReferenceLink": null, @@ -420024,7 +420024,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAgreement", "ApiReferenceLink": null, @@ -420039,7 +420039,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAgreementAcceptance", "ApiReferenceLink": null, @@ -420054,7 +420054,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAgreementFile", "ApiReferenceLink": null, @@ -420069,7 +420069,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAgreementFileLocalization", "ApiReferenceLink": null, @@ -420084,7 +420084,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -420099,7 +420099,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAgreementFileVersion", "ApiReferenceLink": null, @@ -420129,7 +420129,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamApp", "ApiReferenceLink": null, @@ -420169,7 +420169,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -420209,7 +420209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionBot", "ApiReferenceLink": null, @@ -420224,7 +420224,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionColorIcon", "ApiReferenceLink": null, @@ -420239,7 +420239,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent", "ApiReferenceLink": null, @@ -420254,7 +420254,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionDashboardCard", "ApiReferenceLink": null, @@ -420269,7 +420269,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionOutlineIcon", "ApiReferenceLink": null, @@ -420284,7 +420284,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent", "ApiReferenceLink": null, @@ -420299,7 +420299,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta", @@ -420346,7 +420346,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta", @@ -420361,7 +420361,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta", @@ -420376,7 +420376,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationConnectorGroupByRef", "ApiReferenceLink": null, @@ -420391,7 +420391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationExtensionProperty", "ApiReferenceLink": null, @@ -420431,7 +420431,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -420463,7 +420463,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationFederatedIdentityCredentialByName", "ApiReferenceLink": null, @@ -420478,7 +420478,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaApplicationKey", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removekey?view=graph-rest-beta", @@ -420560,7 +420560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaApplicationPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-beta", @@ -420602,7 +420602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronization", "ApiReferenceLink": null, @@ -420617,7 +420617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -420632,7 +420632,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -420647,7 +420647,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationJobSchema", "ApiReferenceLink": null, @@ -420662,7 +420662,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -420677,7 +420677,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -420692,7 +420692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -420724,7 +420724,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -420851,7 +420851,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBookingBusiness", "ApiReferenceLink": null, @@ -420885,7 +420885,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBookingBusinessAppointment", "ApiReferenceLink": null, @@ -420935,7 +420935,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -420952,7 +420952,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBookingBusinessCustomer", "ApiReferenceLink": null, @@ -421002,7 +421002,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -421044,7 +421044,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBookingBusinessService", "ApiReferenceLink": null, @@ -421078,7 +421078,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -421112,7 +421112,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBookingCurrency", "ApiReferenceLink": null, @@ -421129,7 +421129,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessFlowTemplate", "ApiReferenceLink": null, @@ -421144,7 +421144,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenario", "ApiReferenceLink": null, @@ -421176,7 +421176,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioByUniqueName", "ApiReferenceLink": null, @@ -421191,7 +421191,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlanner", "ApiReferenceLink": null, @@ -421206,7 +421206,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerPlanConfiguration", "ApiReferenceLink": null, @@ -421221,7 +421221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", "ApiReferenceLink": null, @@ -421253,7 +421253,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTask", "ApiReferenceLink": null, @@ -421268,7 +421268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskAssignedToTaskBoardFormat", "ApiReferenceLink": null, @@ -421283,7 +421283,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskBucketTaskBoardFormat", "ApiReferenceLink": null, @@ -421298,7 +421298,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskConfiguration", "ApiReferenceLink": null, @@ -421313,7 +421313,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskDetail", "ApiReferenceLink": null, @@ -421328,7 +421328,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskProgressTaskBoardFormat", "ApiReferenceLink": null, @@ -421343,7 +421343,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-delete?view=graph-rest-beta", @@ -421358,7 +421358,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaChatAccessForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-removeallaccessforuser?view=graph-rest-beta", @@ -421375,7 +421375,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaChatInstalledApp", "ApiReferenceLink": null, @@ -421447,7 +421447,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaChatLastMessagePreview", "ApiReferenceLink": null, @@ -421462,7 +421462,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaChatMember", "ApiReferenceLink": null, @@ -421502,7 +421502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -421517,7 +421517,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaChatOperation", "ApiReferenceLink": null, @@ -421532,7 +421532,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaChatPermissionGrant", "ApiReferenceLink": null, @@ -421547,7 +421547,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaChatPinnedMessage", "ApiReferenceLink": null, @@ -421579,7 +421579,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaChatTab", "ApiReferenceLink": null, @@ -421643,7 +421643,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCall", "ApiReferenceLink": null, @@ -421675,7 +421675,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -421707,7 +421707,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -421722,7 +421722,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallOperation", "ApiReferenceLink": null, @@ -421737,7 +421737,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallParticipant", "ApiReferenceLink": null, @@ -421769,7 +421769,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallRecordOrganizerV2", "ApiReferenceLink": null, @@ -421784,7 +421784,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallRecordParticipantV2", "ApiReferenceLink": null, @@ -421799,7 +421799,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -421814,7 +421814,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -421829,7 +421829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -421846,7 +421846,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -421863,7 +421863,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingByJoinWebUrl", "ApiReferenceLink": null, @@ -421878,7 +421878,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -421893,7 +421893,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingRegistration", "ApiReferenceLink": null, @@ -421908,7 +421908,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -421923,7 +421923,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -421938,7 +421938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -421953,7 +421953,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaCommunicationPresence", "ApiReferenceLink": null, @@ -421968,7 +421968,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscovery", "ApiReferenceLink": null, @@ -421982,7 +421982,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCase", "ApiReferenceLink": null, @@ -422014,7 +422014,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -422029,7 +422029,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianHold", "ApiReferenceLink": null, @@ -422048,7 +422048,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -422080,7 +422080,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -422095,7 +422095,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -422127,7 +422127,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -422159,7 +422159,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -422174,7 +422174,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "ApiReferenceLink": null, @@ -422189,7 +422189,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -422204,7 +422204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -422219,7 +422219,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold", "ApiReferenceLink": null, @@ -422238,7 +422238,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -422253,7 +422253,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -422268,7 +422268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -422300,7 +422300,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseSetting", "ApiReferenceLink": null, @@ -422315,7 +422315,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseSourceCollection", "ApiReferenceLink": null, @@ -422347,7 +422347,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "ApiReferenceLink": null, @@ -422362,7 +422362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -422394,7 +422394,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaContact", "ApiReferenceLink": null, @@ -422409,7 +422409,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaContract", "ApiReferenceLink": null, @@ -422424,7 +422424,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDataPolicyOperation", "ApiReferenceLink": null, @@ -422439,7 +422439,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-beta", @@ -425158,7 +425158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceByDeviceId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-beta", @@ -425173,7 +425173,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceCommand", "ApiReferenceLink": null, @@ -425188,7 +425188,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceExtension", "ApiReferenceLink": null, @@ -425203,7 +425203,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", "ApiReferenceLink": null, @@ -425217,7 +425217,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "ApiReferenceLink": null, @@ -425232,7 +425232,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "ApiReferenceLink": null, @@ -425247,7 +425247,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", "ApiReferenceLink": null, @@ -425262,7 +425262,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", "ApiReferenceLink": null, @@ -425277,7 +425277,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidForWorkSetting", "ApiReferenceLink": null, @@ -425291,7 +425291,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "ApiReferenceLink": null, @@ -425305,7 +425305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", "ApiReferenceLink": null, @@ -425320,7 +425320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementApplePushNotificationCertificate", "ApiReferenceLink": null, @@ -425334,7 +425334,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", "ApiReferenceLink": null, @@ -425349,7 +425349,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "ApiReferenceLink": null, @@ -425364,7 +425364,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAssignmentFilter", "ApiReferenceLink": null, @@ -425379,7 +425379,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -425394,7 +425394,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAutopilotEvent", "ApiReferenceLink": null, @@ -425409,7 +425409,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", "ApiReferenceLink": null, @@ -425424,7 +425424,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCartToClassAssociation", "ApiReferenceLink": null, @@ -425439,7 +425439,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCategory", "ApiReferenceLink": null, @@ -425454,7 +425454,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCategorySettingDefinition", "ApiReferenceLink": null, @@ -425469,7 +425469,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -425501,7 +425501,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -425516,7 +425516,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceCategory", "ApiReferenceLink": null, @@ -425531,7 +425531,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -425546,7 +425546,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -425561,7 +425561,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceFirmwareConfigurationInterfaceManagement", "ApiReferenceLink": null, @@ -425593,7 +425593,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -425608,7 +425608,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -425623,7 +425623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -425638,7 +425638,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -425653,7 +425653,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -425668,7 +425668,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceUserFromSharedAppleDevice", "ApiReferenceLink": null, @@ -425685,7 +425685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -425700,7 +425700,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -425715,7 +425715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagementEligibleDevice", "ApiReferenceLink": null, @@ -425747,7 +425747,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -425779,7 +425779,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicy", "ApiReferenceLink": null, @@ -425794,7 +425794,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -425809,7 +425809,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -425824,7 +425824,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -425839,7 +425839,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicySetting", "ApiReferenceLink": null, @@ -425854,7 +425854,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComplianceSetting", "ApiReferenceLink": null, @@ -425869,7 +425869,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConditionalAccessSetting", "ApiReferenceLink": null, @@ -425883,7 +425883,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicy", "ApiReferenceLink": null, @@ -425898,7 +425898,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicyAssignment", "ApiReferenceLink": null, @@ -425913,7 +425913,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicySetting", "ApiReferenceLink": null, @@ -425928,7 +425928,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicyTemplate", "ApiReferenceLink": null, @@ -425943,7 +425943,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", "ApiReferenceLink": null, @@ -425958,7 +425958,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", "ApiReferenceLink": null, @@ -425973,7 +425973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationSetting", "ApiReferenceLink": null, @@ -425988,7 +425988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDataSharingConsent", "ApiReferenceLink": null, @@ -426020,7 +426020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDepOnboardingSetting", "ApiReferenceLink": null, @@ -426035,7 +426035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", "ApiReferenceLink": null, @@ -426050,7 +426050,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "ApiReferenceLink": null, @@ -426065,7 +426065,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDerivedCredential", "ApiReferenceLink": null, @@ -426080,7 +426080,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -426112,7 +426112,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -426144,7 +426144,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -426159,7 +426159,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -426174,7 +426174,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -426189,7 +426189,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "ApiReferenceLink": null, @@ -426203,7 +426203,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -426218,7 +426218,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "ApiReferenceLink": null, @@ -426233,7 +426233,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -426248,7 +426248,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -426263,7 +426263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -426278,7 +426278,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -426293,7 +426293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -426308,7 +426308,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview", "ApiReferenceLink": null, @@ -426323,7 +426323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -426338,7 +426338,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -426353,7 +426353,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationConflictSummary", "ApiReferenceLink": null, @@ -426368,7 +426368,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -426383,7 +426383,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary", "ApiReferenceLink": null, @@ -426397,7 +426397,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -426412,7 +426412,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview", "ApiReferenceLink": null, @@ -426427,7 +426427,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", "ApiReferenceLink": null, @@ -426442,7 +426442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "ApiReferenceLink": null, @@ -426457,7 +426457,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationProfile", "ApiReferenceLink": null, @@ -426472,7 +426472,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", "ApiReferenceLink": null, @@ -426487,7 +426487,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationUserStateSummary", "ApiReferenceLink": null, @@ -426501,7 +426501,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -426516,7 +426516,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview", "ApiReferenceLink": null, @@ -426531,7 +426531,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -426563,7 +426563,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -426595,7 +426595,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceHealthScript", "ApiReferenceLink": null, @@ -426627,7 +426627,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceHealthScriptAssignment", "ApiReferenceLink": null, @@ -426659,7 +426659,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", "ApiReferenceLink": null, @@ -426691,7 +426691,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceHealthScriptRunSummary", "ApiReferenceLink": null, @@ -426706,7 +426706,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceShellScript", "ApiReferenceLink": null, @@ -426738,7 +426738,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptAssignment", "ApiReferenceLink": null, @@ -426770,7 +426770,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", "ApiReferenceLink": null, @@ -426802,7 +426802,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", "ApiReferenceLink": null, @@ -426834,7 +426834,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptUserRunState", "ApiReferenceLink": null, @@ -426866,7 +426866,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -426881,7 +426881,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDomainJoinConnector", "ApiReferenceLink": null, @@ -426896,7 +426896,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementEmbeddedSimActivationCodePool", "ApiReferenceLink": null, @@ -426911,7 +426911,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", "ApiReferenceLink": null, @@ -426926,7 +426926,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "ApiReferenceLink": null, @@ -426941,7 +426941,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -426973,7 +426973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementExchangeOnPremisePolicy", "ApiReferenceLink": null, @@ -426989,7 +426989,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementExchangeOnPremisePolicyConditionalAccessSetting", "ApiReferenceLink": null, @@ -427005,7 +427005,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyCategory", "ApiReferenceLink": null, @@ -427020,7 +427020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyConfiguration", "ApiReferenceLink": null, @@ -427035,7 +427035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", "ApiReferenceLink": null, @@ -427050,7 +427050,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", "ApiReferenceLink": null, @@ -427065,7 +427065,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "ApiReferenceLink": null, @@ -427080,7 +427080,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinition", "ApiReferenceLink": null, @@ -427095,7 +427095,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionFile", "ApiReferenceLink": null, @@ -427110,7 +427110,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinition", "ApiReferenceLink": null, @@ -427125,7 +427125,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -427140,7 +427140,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinition", "ApiReferenceLink": null, @@ -427155,7 +427155,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -427170,7 +427170,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", "ApiReferenceLink": null, @@ -427185,7 +427185,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", "ApiReferenceLink": null, @@ -427200,7 +427200,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinition", "ApiReferenceLink": null, @@ -427215,7 +427215,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -427230,7 +427230,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -427245,7 +427245,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyMigrationReport", "ApiReferenceLink": null, @@ -427260,7 +427260,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "ApiReferenceLink": null, @@ -427275,7 +427275,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "ApiReferenceLink": null, @@ -427290,7 +427290,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyObjectFile", "ApiReferenceLink": null, @@ -427305,7 +427305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", "ApiReferenceLink": null, @@ -427320,7 +427320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "ApiReferenceLink": null, @@ -427335,7 +427335,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", "ApiReferenceLink": null, @@ -427352,7 +427352,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementImportedDeviceIdentity", "ApiReferenceLink": null, @@ -427367,7 +427367,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -427382,7 +427382,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntent", "ApiReferenceLink": null, @@ -427397,7 +427397,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentAssignment", "ApiReferenceLink": null, @@ -427412,7 +427412,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentCategory", "ApiReferenceLink": null, @@ -427427,7 +427427,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentCategorySetting", "ApiReferenceLink": null, @@ -427442,7 +427442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentCategorySettingDefinition", "ApiReferenceLink": null, @@ -427457,7 +427457,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -427472,7 +427472,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentDeviceState", "ApiReferenceLink": null, @@ -427487,7 +427487,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentDeviceStateSummary", "ApiReferenceLink": null, @@ -427502,7 +427502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentSetting", "ApiReferenceLink": null, @@ -427517,7 +427517,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentUserState", "ApiReferenceLink": null, @@ -427532,7 +427532,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentUserStateSummary", "ApiReferenceLink": null, @@ -427547,7 +427547,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntuneBrandingProfile", "ApiReferenceLink": null, @@ -427562,7 +427562,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntuneBrandingProfileAssignment", "ApiReferenceLink": null, @@ -427577,7 +427577,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -427592,7 +427592,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", "ApiReferenceLink": null, @@ -427607,7 +427607,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "ApiReferenceLink": null, @@ -427622,7 +427622,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "ApiReferenceLink": null, @@ -427637,7 +427637,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -427669,7 +427669,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -427684,7 +427684,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceCategory", "ApiReferenceLink": null, @@ -427699,7 +427699,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceCleanupRule", "ApiReferenceLink": null, @@ -427714,7 +427714,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -427729,7 +427729,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -427744,7 +427744,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceEncryptionState", "ApiReferenceLink": null, @@ -427759,7 +427759,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDeviceManagementManagedDeviceFirmwareConfigurationInterfaceManagement", "ApiReferenceLink": null, @@ -427791,7 +427791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -427806,7 +427806,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -427821,7 +427821,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -427836,7 +427836,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -427851,7 +427851,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -427866,7 +427866,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDeviceManagementManagedDeviceUserFromSharedAppleDevice", "ApiReferenceLink": null, @@ -427883,7 +427883,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -427898,7 +427898,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -427913,7 +427913,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelConfiguration", "ApiReferenceLink": null, @@ -427928,7 +427928,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", "ApiReferenceLink": null, @@ -427943,7 +427943,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "ApiReferenceLink": null, @@ -427958,7 +427958,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelSite", "ApiReferenceLink": null, @@ -427973,7 +427973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", "ApiReferenceLink": null, @@ -427988,7 +427988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "ApiReferenceLink": null, @@ -428003,7 +428003,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -428018,7 +428018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -428050,7 +428050,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -428082,7 +428082,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMonitoring", "ApiReferenceLink": null, @@ -428096,7 +428096,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMonitoringAlertRecord", "ApiReferenceLink": null, @@ -428111,7 +428111,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMonitoringAlertRule", "ApiReferenceLink": null, @@ -428126,7 +428126,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementNdeConnector", "ApiReferenceLink": null, @@ -428141,7 +428141,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -428156,7 +428156,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -428171,7 +428171,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementPartner", "ApiReferenceLink": null, @@ -428203,7 +428203,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementRemoteActionAudit", "ApiReferenceLink": null, @@ -428235,7 +428235,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -428267,7 +428267,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementReport", "ApiReferenceLink": null, @@ -428281,7 +428281,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementResourceAccessProfile", "ApiReferenceLink": null, @@ -428296,7 +428296,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementResourceAccessProfileAssignment", "ApiReferenceLink": null, @@ -428311,7 +428311,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -428343,7 +428343,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementReusableSetting", "ApiReferenceLink": null, @@ -428358,7 +428358,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -428390,7 +428390,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -428422,7 +428422,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -428454,7 +428454,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementRoleScopeTag", "ApiReferenceLink": null, @@ -428486,7 +428486,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementRoleScopeTagAssignment", "ApiReferenceLink": null, @@ -428501,7 +428501,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementScript", "ApiReferenceLink": null, @@ -428516,7 +428516,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementScriptAssignment", "ApiReferenceLink": null, @@ -428548,7 +428548,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementScriptDeviceRunState", "ApiReferenceLink": null, @@ -428580,7 +428580,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementScriptGroupAssignment", "ApiReferenceLink": null, @@ -428612,7 +428612,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementScriptUserRunState", "ApiReferenceLink": null, @@ -428644,7 +428644,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -428676,7 +428676,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementSettingDefinition", "ApiReferenceLink": null, @@ -428691,7 +428691,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -428706,7 +428706,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplate", "ApiReferenceLink": null, @@ -428721,7 +428721,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateCategory", "ApiReferenceLink": null, @@ -428736,7 +428736,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -428751,7 +428751,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateCategorySettingDefinition", "ApiReferenceLink": null, @@ -428766,7 +428766,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableTo", "ApiReferenceLink": null, @@ -428781,7 +428781,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableToCategory", "ApiReferenceLink": null, @@ -428796,7 +428796,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -428811,7 +428811,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", "ApiReferenceLink": null, @@ -428826,7 +428826,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableToSetting", "ApiReferenceLink": null, @@ -428841,7 +428841,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateSetting", "ApiReferenceLink": null, @@ -428856,7 +428856,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -428871,7 +428871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -428886,7 +428886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -428901,7 +428901,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTermAndConditionGroupAssignment", "ApiReferenceLink": null, @@ -428916,7 +428916,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -428931,7 +428931,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", "ApiReferenceLink": null, @@ -428963,7 +428963,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", "ApiReferenceLink": null, @@ -428978,7 +428978,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", "ApiReferenceLink": null, @@ -429010,7 +429010,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -429042,7 +429042,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "ApiReferenceLink": null, @@ -429074,7 +429074,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -429106,7 +429106,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -429138,7 +429138,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -429170,7 +429170,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -429202,7 +429202,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -429234,7 +429234,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -429266,7 +429266,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -429298,7 +429298,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverview", "ApiReferenceLink": null, @@ -429312,7 +429312,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -429327,7 +429327,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -429359,7 +429359,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "ApiReferenceLink": null, @@ -429391,7 +429391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", "ApiReferenceLink": null, @@ -429405,7 +429405,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "ApiReferenceLink": null, @@ -429437,7 +429437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "ApiReferenceLink": null, @@ -429469,7 +429469,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "ApiReferenceLink": null, @@ -429501,7 +429501,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "ApiReferenceLink": null, @@ -429533,7 +429533,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "ApiReferenceLink": null, @@ -429565,7 +429565,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", "ApiReferenceLink": null, @@ -429579,7 +429579,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -429594,7 +429594,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -429609,7 +429609,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "ApiReferenceLink": null, @@ -429641,7 +429641,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -429673,7 +429673,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", "ApiReferenceLink": null, @@ -429706,7 +429706,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -429738,7 +429738,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -429770,7 +429770,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -429802,7 +429802,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -429834,7 +429834,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", "ApiReferenceLink": null, @@ -429849,7 +429849,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "ApiReferenceLink": null, @@ -429881,7 +429881,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", "ApiReferenceLink": null, @@ -429913,7 +429913,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -429945,7 +429945,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -429977,7 +429977,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "ApiReferenceLink": null, @@ -430009,7 +430009,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticOverview", "ApiReferenceLink": null, @@ -430023,7 +430023,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", "ApiReferenceLink": null, @@ -430055,7 +430055,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", "ApiReferenceLink": null, @@ -430087,7 +430087,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -430119,7 +430119,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "ApiReferenceLink": null, @@ -430133,7 +430133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -430165,7 +430165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -430197,7 +430197,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -430229,7 +430229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserPfxCertificate", "ApiReferenceLink": null, @@ -430244,7 +430244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointBulkAction", "ApiReferenceLink": null, @@ -430259,7 +430259,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointCrossCloudGovernmentOrganizationMapping", "ApiReferenceLink": null, @@ -430273,7 +430273,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -430288,7 +430288,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", "ApiReferenceLink": null, @@ -430303,7 +430303,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", "ApiReferenceLink": null, @@ -430318,7 +430318,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -430333,7 +430333,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -430348,7 +430348,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointOrganizationSetting", "ApiReferenceLink": null, @@ -430362,7 +430362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -430377,7 +430377,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -430392,7 +430392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointReport", "ApiReferenceLink": null, @@ -430406,7 +430406,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointReportExportJob", "ApiReferenceLink": null, @@ -430421,7 +430421,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointServicePlan", "ApiReferenceLink": null, @@ -430436,7 +430436,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", "ApiReferenceLink": null, @@ -430451,7 +430451,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointSnapshot", "ApiReferenceLink": null, @@ -430466,7 +430466,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointSupportedRegion", "ApiReferenceLink": null, @@ -430481,7 +430481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -430496,7 +430496,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -430511,7 +430511,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", "ApiReferenceLink": null, @@ -430526,7 +430526,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", "ApiReferenceLink": null, @@ -430541,7 +430541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", "ApiReferenceLink": null, @@ -430556,7 +430556,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -430571,7 +430571,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotSetting", "ApiReferenceLink": null, @@ -430585,7 +430585,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsFeatureUpdateProfile", "ApiReferenceLink": null, @@ -430600,7 +430600,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", "ApiReferenceLink": null, @@ -430615,7 +430615,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -430630,7 +430630,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -430645,7 +430645,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -430677,7 +430677,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -430709,7 +430709,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsQualityUpdateProfile", "ApiReferenceLink": null, @@ -430724,7 +430724,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", "ApiReferenceLink": null, @@ -430769,7 +430769,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDeviceUsageRights", "ApiReferenceLink": null, @@ -430784,7 +430784,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -430799,7 +430799,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -430829,7 +430829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -430844,7 +430844,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryAttributeSet", "ApiReferenceLink": null, @@ -430859,7 +430859,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCertificateAuthority", "ApiReferenceLink": null, @@ -430873,7 +430873,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", "ApiReferenceLink": null, @@ -430905,7 +430905,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", "ApiReferenceLink": null, @@ -430937,7 +430937,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -430952,7 +430952,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -430967,7 +430967,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryDeletedItem", "ApiReferenceLink": null, @@ -430982,7 +430982,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryDeviceLocalCredential", "ApiReferenceLink": null, @@ -430997,7 +430997,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryExternalUserProfile", "ApiReferenceLink": null, @@ -431012,7 +431012,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -431027,7 +431027,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryFeatureRolloutPolicyApplyToByRef", "ApiReferenceLink": null, @@ -431057,7 +431057,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -431089,7 +431089,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryImpactedResource", "ApiReferenceLink": null, @@ -431104,7 +431104,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryInboundSharedUserProfile", "ApiReferenceLink": null, @@ -431119,7 +431119,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDirectoryInboundSharedUserProfilePersonalData", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/inboundshareduserprofile-removepersonaldata?view=graph-rest-beta", @@ -431151,7 +431151,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delete?view=graph-rest-beta", @@ -431166,7 +431166,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -431181,7 +431181,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryOutboundSharedUserProfile", "ApiReferenceLink": null, @@ -431196,7 +431196,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryOutboundSharedUserProfileTenant", "ApiReferenceLink": null, @@ -431211,7 +431211,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDirectoryOutboundSharedUserProfileTenantPersonalData", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tenantreference-removepersonaldata?view=graph-rest-beta", @@ -431243,7 +431243,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryPendingExternalUserProfile", "ApiReferenceLink": null, @@ -431258,7 +431258,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRecommendation", "ApiReferenceLink": null, @@ -431273,7 +431273,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRecommendationImpactedResource", "ApiReferenceLink": null, @@ -431288,7 +431288,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRole", "ApiReferenceLink": null, @@ -431303,7 +431303,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRoleByRoleTemplateId", "ApiReferenceLink": null, @@ -431333,7 +431333,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -431348,7 +431348,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRoleTemplate", "ApiReferenceLink": null, @@ -431363,7 +431363,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectorySetting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-delete?view=graph-rest-beta", @@ -431395,7 +431395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectorySettingTemplate", "ApiReferenceLink": null, @@ -431410,7 +431410,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectorySharedEmailDomain", "ApiReferenceLink": null, @@ -431425,7 +431425,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectorySubscription", "ApiReferenceLink": null, @@ -431440,7 +431440,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectorySubscriptionByCommerceSubscriptionId", "ApiReferenceLink": null, @@ -431455,7 +431455,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDirectorySubscriptionByOcpSubscriptionId", "ApiReferenceLink": null, @@ -431470,7 +431470,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-delete?view=graph-rest-beta", @@ -431485,7 +431485,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDomainFederationConfiguration", "ApiReferenceLink": null, @@ -431500,7 +431500,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -431515,7 +431515,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDomainSharedEmailDomainInvitation", "ApiReferenceLink": null, @@ -431530,7 +431530,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -431545,7 +431545,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDrive", "ApiReferenceLink": null, @@ -431560,7 +431560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItem", "ApiReferenceLink": null, @@ -431600,7 +431600,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemAnalytic", "ApiReferenceLink": null, @@ -431615,7 +431615,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -431630,7 +431630,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItem", "ApiReferenceLink": null, @@ -431645,7 +431645,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -431660,7 +431660,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -431675,7 +431675,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemField", "ApiReferenceLink": null, @@ -431690,7 +431690,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemVersion", "ApiReferenceLink": null, @@ -431705,7 +431705,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -431720,7 +431720,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDriveItemPermanent", "ApiReferenceLink": null, @@ -431735,7 +431735,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemPermission", "ApiReferenceLink": null, @@ -431775,7 +431775,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -431790,7 +431790,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemSubscription", "ApiReferenceLink": null, @@ -431805,7 +431805,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemThumbnail", "ApiReferenceLink": null, @@ -431820,7 +431820,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveItemVersion", "ApiReferenceLink": null, @@ -431835,7 +431835,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveList", "ApiReferenceLink": null, @@ -431850,7 +431850,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListColumn", "ApiReferenceLink": null, @@ -431865,7 +431865,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListContentType", "ApiReferenceLink": null, @@ -431880,7 +431880,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -431895,7 +431895,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -431910,7 +431910,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListItem", "ApiReferenceLink": null, @@ -431925,7 +431925,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -431940,7 +431940,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -431955,7 +431955,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemField", "ApiReferenceLink": null, @@ -431970,7 +431970,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemVersion", "ApiReferenceLink": null, @@ -431985,7 +431985,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemVersionField", "ApiReferenceLink": null, @@ -432000,7 +432000,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListOperation", "ApiReferenceLink": null, @@ -432015,7 +432015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveListSubscription", "ApiReferenceLink": null, @@ -432030,7 +432030,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRoot", "ApiReferenceLink": null, @@ -432045,7 +432045,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootAnalytic", "ApiReferenceLink": null, @@ -432060,7 +432060,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -432075,7 +432075,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItem", "ApiReferenceLink": null, @@ -432090,7 +432090,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -432105,7 +432105,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -432120,7 +432120,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemField", "ApiReferenceLink": null, @@ -432135,7 +432135,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemVersion", "ApiReferenceLink": null, @@ -432150,7 +432150,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -432165,7 +432165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaDriveRootPermanent", "ApiReferenceLink": null, @@ -432180,7 +432180,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootPermission", "ApiReferenceLink": null, @@ -432195,7 +432195,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -432210,7 +432210,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootSubscription", "ApiReferenceLink": null, @@ -432225,7 +432225,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootThumbnail", "ApiReferenceLink": null, @@ -432240,7 +432240,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaDriveRootVersion", "ApiReferenceLink": null, @@ -432255,7 +432255,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClass", "ApiReferenceLink": null, @@ -432270,7 +432270,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignment", "ApiReferenceLink": null, @@ -432302,7 +432302,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -432366,7 +432366,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentDefault", "ApiReferenceLink": null, @@ -432381,7 +432381,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -432413,7 +432413,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -432445,7 +432445,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentRubric", "ApiReferenceLink": null, @@ -432477,7 +432477,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentRubricByRef", "ApiReferenceLink": null, @@ -432509,7 +432509,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSetting", "ApiReferenceLink": null, @@ -432524,7 +432524,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -432539,7 +432539,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSettingGradingScheme", "ApiReferenceLink": null, @@ -432571,7 +432571,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -432586,7 +432586,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -432601,7 +432601,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -432633,7 +432633,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -432665,7 +432665,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -432680,7 +432680,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -432710,7 +432710,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassModule", "ApiReferenceLink": null, @@ -432742,7 +432742,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationClassModuleResource", "ApiReferenceLink": null, @@ -432789,7 +432789,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMe", "ApiReferenceLink": null, @@ -432803,7 +432803,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignment", "ApiReferenceLink": null, @@ -432833,7 +432833,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -432848,7 +432848,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -432863,7 +432863,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentRubric", "ApiReferenceLink": null, @@ -432878,7 +432878,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentRubricByRef", "ApiReferenceLink": null, @@ -432893,7 +432893,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -432908,7 +432908,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -432923,7 +432923,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -432938,7 +432938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -432953,7 +432953,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -432968,7 +432968,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -432983,7 +432983,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationMeRubric", "ApiReferenceLink": null, @@ -433015,7 +433015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationSchool", "ApiReferenceLink": null, @@ -433060,7 +433060,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationSynchronizationProfile", "ApiReferenceLink": null, @@ -433075,7 +433075,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationSynchronizationProfileError", "ApiReferenceLink": null, @@ -433090,7 +433090,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationSynchronizationProfileStatus", "ApiReferenceLink": null, @@ -433105,7 +433105,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUser", "ApiReferenceLink": null, @@ -433120,7 +433120,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignment", "ApiReferenceLink": null, @@ -433150,7 +433150,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -433165,7 +433165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -433180,7 +433180,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentRubric", "ApiReferenceLink": null, @@ -433195,7 +433195,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentRubricByRef", "ApiReferenceLink": null, @@ -433210,7 +433210,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -433225,7 +433225,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -433240,7 +433240,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -433255,7 +433255,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -433270,7 +433270,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -433285,7 +433285,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -433300,7 +433300,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEducationUserRubric", "ApiReferenceLink": null, @@ -433315,7 +433315,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -433330,7 +433330,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignment", "ApiReferenceLink": null, @@ -433345,7 +433345,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentApproval", "ApiReferenceLink": null, @@ -433360,7 +433360,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentApprovalStep", "ApiReferenceLink": null, @@ -433375,7 +433375,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -433390,7 +433390,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", "ApiReferenceLink": null, @@ -433405,7 +433405,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -433420,7 +433420,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentRequest", "ApiReferenceLink": null, @@ -433435,7 +433435,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageCatalog", "ApiReferenceLink": null, @@ -433450,7 +433450,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", "ApiReferenceLink": null, @@ -433465,7 +433465,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", "ApiReferenceLink": null, @@ -433480,7 +433480,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "ApiReferenceLink": null, @@ -433495,7 +433495,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageIncompatibleGroupByRef", "ApiReferenceLink": null, @@ -433510,7 +433510,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageResourceRequest", "ApiReferenceLink": null, @@ -433525,7 +433525,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageResourceRoleScope", "ApiReferenceLink": null, @@ -433540,7 +433540,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAssignmentRequest", "ApiReferenceLink": null, @@ -433555,7 +433555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -433600,7 +433600,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementSubject", "ApiReferenceLink": null, @@ -433615,7 +433615,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementSubjectByObjectId", "ApiReferenceLink": null, @@ -433630,7 +433630,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalAuthorizationSystem", "ApiReferenceLink": null, @@ -433645,7 +433645,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalAuthorizationSystemDataCollectionInfo", "ApiReferenceLink": null, @@ -433660,7 +433660,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalConnection", "ApiReferenceLink": null, @@ -433692,7 +433692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalConnectionGroup", "ApiReferenceLink": null, @@ -433724,7 +433724,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -433756,7 +433756,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalConnectionItem", "ApiReferenceLink": null, @@ -433788,7 +433788,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -433803,7 +433803,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalConnectionOperation", "ApiReferenceLink": null, @@ -433818,7 +433818,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalConnectionQuota", "ApiReferenceLink": null, @@ -433833,7 +433833,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataConnector", "ApiReferenceLink": null, @@ -433848,7 +433848,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataInboundFlow", "ApiReferenceLink": null, @@ -433863,7 +433863,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataOperation", "ApiReferenceLink": null, @@ -433878,7 +433878,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", "ApiReferenceLink": null, @@ -433893,7 +433893,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", "ApiReferenceLink": null, @@ -433908,7 +433908,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataReferenceDefinition", "ApiReferenceLink": null, @@ -433923,7 +433923,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataRoleGroup", "ApiReferenceLink": null, @@ -433938,7 +433938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataSourceSystem", "ApiReferenceLink": null, @@ -433953,7 +433953,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataYear", "ApiReferenceLink": null, @@ -433968,7 +433968,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCountryRegion", "ApiReferenceLink": null, @@ -433983,7 +433983,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCurrency", "ApiReferenceLink": null, @@ -433998,7 +433998,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomer", "ApiReferenceLink": null, @@ -434013,7 +434013,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerCurrency", "ApiReferenceLink": null, @@ -434028,7 +434028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPayment", "ApiReferenceLink": null, @@ -434043,7 +434043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentCustomer", "ApiReferenceLink": null, @@ -434058,7 +434058,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency", "ApiReferenceLink": null, @@ -434073,7 +434073,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -434088,7 +434088,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod", "ApiReferenceLink": null, @@ -434103,7 +434103,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournal", "ApiReferenceLink": null, @@ -434118,7 +434118,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", "ApiReferenceLink": null, @@ -434133,7 +434133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", "ApiReferenceLink": null, @@ -434148,7 +434148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", "ApiReferenceLink": null, @@ -434163,7 +434163,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -434178,7 +434178,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", "ApiReferenceLink": null, @@ -434193,7 +434193,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", "ApiReferenceLink": null, @@ -434208,7 +434208,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", "ApiReferenceLink": null, @@ -434223,7 +434223,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentMethod", "ApiReferenceLink": null, @@ -434240,7 +434240,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentTerm", "ApiReferenceLink": null, @@ -434257,7 +434257,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPicture", "ApiReferenceLink": null, @@ -434272,7 +434272,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerShipmentMethod", "ApiReferenceLink": null, @@ -434287,7 +434287,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyEmployee", "ApiReferenceLink": null, @@ -434302,7 +434302,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyEmployeePicture", "ApiReferenceLink": null, @@ -434317,7 +434317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyItem", "ApiReferenceLink": null, @@ -434332,7 +434332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyItemCategory", "ApiReferenceLink": null, @@ -434349,7 +434349,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyItemPicture", "ApiReferenceLink": null, @@ -434364,7 +434364,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyJournal", "ApiReferenceLink": null, @@ -434379,7 +434379,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyJournalLine", "ApiReferenceLink": null, @@ -434396,7 +434396,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPaymentMethod", "ApiReferenceLink": null, @@ -434411,7 +434411,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPaymentTerm", "ApiReferenceLink": null, @@ -434426,7 +434426,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPicture", "ApiReferenceLink": null, @@ -434441,7 +434441,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceCurrency", "ApiReferenceLink": null, @@ -434456,7 +434456,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceLineItem", "ApiReferenceLink": null, @@ -434473,7 +434473,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory", "ApiReferenceLink": null, @@ -434490,7 +434490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -434507,7 +434507,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendor", "ApiReferenceLink": null, @@ -434522,7 +434522,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency", "ApiReferenceLink": null, @@ -434537,7 +434537,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod", "ApiReferenceLink": null, @@ -434552,7 +434552,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm", "ApiReferenceLink": null, @@ -434567,7 +434567,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", "ApiReferenceLink": null, @@ -434582,7 +434582,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCurrency", "ApiReferenceLink": null, @@ -434597,7 +434597,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomer", "ApiReferenceLink": null, @@ -434612,7 +434612,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency", "ApiReferenceLink": null, @@ -434627,7 +434627,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod", "ApiReferenceLink": null, @@ -434642,7 +434642,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm", "ApiReferenceLink": null, @@ -434657,7 +434657,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", "ApiReferenceLink": null, @@ -434672,7 +434672,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod", "ApiReferenceLink": null, @@ -434687,7 +434687,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoLineItem", "ApiReferenceLink": null, @@ -434702,7 +434702,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoLineItemCategory", "ApiReferenceLink": null, @@ -434717,7 +434717,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -434732,7 +434732,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoPaymentTerm", "ApiReferenceLink": null, @@ -434747,7 +434747,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", "ApiReferenceLink": null, @@ -434762,7 +434762,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", "ApiReferenceLink": null, @@ -434777,7 +434777,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -434792,7 +434792,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCurrency", "ApiReferenceLink": null, @@ -434807,7 +434807,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomer", "ApiReferenceLink": null, @@ -434822,7 +434822,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerCurrency", "ApiReferenceLink": null, @@ -434837,7 +434837,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod", "ApiReferenceLink": null, @@ -434852,7 +434852,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm", "ApiReferenceLink": null, @@ -434867,7 +434867,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerPicture", "ApiReferenceLink": null, @@ -434882,7 +434882,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod", "ApiReferenceLink": null, @@ -434897,7 +434897,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceLineItem", "ApiReferenceLink": null, @@ -434914,7 +434914,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceLineItemCategory", "ApiReferenceLink": null, @@ -434931,7 +434931,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -434948,7 +434948,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoicePaymentTerm", "ApiReferenceLink": null, @@ -434963,7 +434963,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceShipmentMethod", "ApiReferenceLink": null, @@ -434978,7 +434978,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCurrency", "ApiReferenceLink": null, @@ -434993,7 +434993,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomer", "ApiReferenceLink": null, @@ -435008,7 +435008,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerCurrency", "ApiReferenceLink": null, @@ -435023,7 +435023,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod", "ApiReferenceLink": null, @@ -435038,7 +435038,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm", "ApiReferenceLink": null, @@ -435053,7 +435053,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerPicture", "ApiReferenceLink": null, @@ -435068,7 +435068,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod", "ApiReferenceLink": null, @@ -435083,7 +435083,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderLineItem", "ApiReferenceLink": null, @@ -435100,7 +435100,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderLineItemCategory", "ApiReferenceLink": null, @@ -435117,7 +435117,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderLineItemPicture", "ApiReferenceLink": null, @@ -435134,7 +435134,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderPaymentTerm", "ApiReferenceLink": null, @@ -435149,7 +435149,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCurrency", "ApiReferenceLink": null, @@ -435164,7 +435164,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomer", "ApiReferenceLink": null, @@ -435179,7 +435179,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerCurrency", "ApiReferenceLink": null, @@ -435194,7 +435194,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod", "ApiReferenceLink": null, @@ -435209,7 +435209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm", "ApiReferenceLink": null, @@ -435224,7 +435224,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerPicture", "ApiReferenceLink": null, @@ -435239,7 +435239,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod", "ApiReferenceLink": null, @@ -435254,7 +435254,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteLineItem", "ApiReferenceLink": null, @@ -435271,7 +435271,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteLineItemCategory", "ApiReferenceLink": null, @@ -435288,7 +435288,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteLineItemPicture", "ApiReferenceLink": null, @@ -435305,7 +435305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuotePaymentTerm", "ApiReferenceLink": null, @@ -435320,7 +435320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteShipmentMethod", "ApiReferenceLink": null, @@ -435335,7 +435335,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyShipmentMethod", "ApiReferenceLink": null, @@ -435350,7 +435350,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyTaxArea", "ApiReferenceLink": null, @@ -435365,7 +435365,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyTaxGroup", "ApiReferenceLink": null, @@ -435380,7 +435380,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyUnitOfMeasure", "ApiReferenceLink": null, @@ -435395,7 +435395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendor", "ApiReferenceLink": null, @@ -435410,7 +435410,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendorCurrency", "ApiReferenceLink": null, @@ -435425,7 +435425,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendorPaymentMethod", "ApiReferenceLink": null, @@ -435440,7 +435440,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendorPaymentTerm", "ApiReferenceLink": null, @@ -435455,7 +435455,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendorPicture", "ApiReferenceLink": null, @@ -435470,7 +435470,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-beta", @@ -435500,7 +435500,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -435515,7 +435515,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-beta", @@ -435530,7 +435530,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupCalendarEvent", "ApiReferenceLink": null, @@ -435562,7 +435562,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupCalendarPermission", "ApiReferenceLink": null, @@ -435577,7 +435577,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupConversation", "ApiReferenceLink": null, @@ -435609,7 +435609,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThread", "ApiReferenceLink": null, @@ -435641,7 +435641,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostAttachment", "ApiReferenceLink": null, @@ -435656,7 +435656,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -435671,7 +435671,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -435686,7 +435686,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -435701,7 +435701,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostInReplyToMention", "ApiReferenceLink": null, @@ -435716,7 +435716,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostMention", "ApiReferenceLink": null, @@ -435731,7 +435731,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDrive", "ApiReferenceLink": null, @@ -435746,7 +435746,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItem", "ApiReferenceLink": null, @@ -435761,7 +435761,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemAnalytic", "ApiReferenceLink": null, @@ -435776,7 +435776,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -435791,7 +435791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItem", "ApiReferenceLink": null, @@ -435806,7 +435806,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -435821,7 +435821,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -435836,7 +435836,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemField", "ApiReferenceLink": null, @@ -435851,7 +435851,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -435866,7 +435866,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -435881,7 +435881,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaGroupDriveItemPermanent", "ApiReferenceLink": null, @@ -435896,7 +435896,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemPermission", "ApiReferenceLink": null, @@ -435911,7 +435911,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -435926,7 +435926,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -435941,7 +435941,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -435956,7 +435956,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemVersion", "ApiReferenceLink": null, @@ -435971,7 +435971,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveList", "ApiReferenceLink": null, @@ -435986,7 +435986,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListColumn", "ApiReferenceLink": null, @@ -436001,7 +436001,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListContentType", "ApiReferenceLink": null, @@ -436016,7 +436016,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -436031,7 +436031,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -436046,7 +436046,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItem", "ApiReferenceLink": null, @@ -436061,7 +436061,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -436076,7 +436076,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -436091,7 +436091,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemField", "ApiReferenceLink": null, @@ -436106,7 +436106,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -436121,7 +436121,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemVersionField", "ApiReferenceLink": null, @@ -436136,7 +436136,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListOperation", "ApiReferenceLink": null, @@ -436151,7 +436151,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListSubscription", "ApiReferenceLink": null, @@ -436166,7 +436166,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRoot", "ApiReferenceLink": null, @@ -436181,7 +436181,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootAnalytic", "ApiReferenceLink": null, @@ -436196,7 +436196,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -436211,7 +436211,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItem", "ApiReferenceLink": null, @@ -436226,7 +436226,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -436241,7 +436241,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -436256,7 +436256,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemField", "ApiReferenceLink": null, @@ -436271,7 +436271,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -436286,7 +436286,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -436301,7 +436301,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaGroupDriveRootPermanent", "ApiReferenceLink": null, @@ -436316,7 +436316,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootPermission", "ApiReferenceLink": null, @@ -436331,7 +436331,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -436346,7 +436346,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -436361,7 +436361,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -436376,7 +436376,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootVersion", "ApiReferenceLink": null, @@ -436391,7 +436391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEndpoint", "ApiReferenceLink": null, @@ -436406,7 +436406,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEvent", "ApiReferenceLink": null, @@ -436438,7 +436438,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventAttachment", "ApiReferenceLink": null, @@ -436453,7 +436453,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -436468,7 +436468,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -436483,7 +436483,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExceptionOccurrenceInstanceAttachment", "ApiReferenceLink": null, @@ -436498,7 +436498,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -436513,7 +436513,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExtension", "ApiReferenceLink": null, @@ -436528,7 +436528,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventInstanceAttachment", "ApiReferenceLink": null, @@ -436543,7 +436543,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventInstanceExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -436558,7 +436558,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -436573,7 +436573,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -436588,7 +436588,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupExtension", "ApiReferenceLink": null, @@ -436603,7 +436603,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaGroupFavorite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-removefavorite?view=graph-rest-beta", @@ -436618,7 +436618,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaGroupFromLifecyclePolicy", "ApiReferenceLink": null, @@ -436635,7 +436635,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-delete?view=graph-rest-beta", @@ -436692,7 +436692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -436707,7 +436707,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupOnenotePage", "ApiReferenceLink": null, @@ -436739,7 +436739,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupOnenoteSection", "ApiReferenceLink": null, @@ -436754,7 +436754,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -436801,7 +436801,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaGroupPasswordSingleSignOnCredential", "ApiReferenceLink": null, @@ -436843,7 +436843,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupPermissionGrant", "ApiReferenceLink": null, @@ -436858,7 +436858,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupPhoto", "ApiReferenceLink": null, @@ -436890,7 +436890,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupPlannerPlanDetail", "ApiReferenceLink": null, @@ -436920,7 +436920,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSetting", "ApiReferenceLink": null, @@ -436952,7 +436952,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaGroupSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-beta", @@ -436969,7 +436969,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteAnalytic", "ApiReferenceLink": null, @@ -436984,7 +436984,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -436999,7 +436999,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -437014,7 +437014,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteColumn", "ApiReferenceLink": null, @@ -437029,7 +437029,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteContentType", "ApiReferenceLink": null, @@ -437044,7 +437044,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -437059,7 +437059,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -437074,7 +437074,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -437091,7 +437091,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathInformationProtection", "ApiReferenceLink": null, @@ -437108,7 +437108,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -437125,7 +437125,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathRecycleBin", "ApiReferenceLink": null, @@ -437142,7 +437142,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -437159,7 +437159,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtection", "ApiReferenceLink": null, @@ -437174,7 +437174,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -437189,7 +437189,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionPolicy", "ApiReferenceLink": null, @@ -437204,7 +437204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -437219,7 +437219,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -437234,7 +437234,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -437249,7 +437249,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionSensitivityPolicySetting", "ApiReferenceLink": null, @@ -437264,7 +437264,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -437279,7 +437279,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -437294,7 +437294,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteList", "ApiReferenceLink": null, @@ -437309,7 +437309,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListColumn", "ApiReferenceLink": null, @@ -437324,7 +437324,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListContentType", "ApiReferenceLink": null, @@ -437339,7 +437339,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -437354,7 +437354,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -437369,7 +437369,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItem", "ApiReferenceLink": null, @@ -437384,7 +437384,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemActivity", "ApiReferenceLink": null, @@ -437399,7 +437399,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -437414,7 +437414,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -437429,7 +437429,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemField", "ApiReferenceLink": null, @@ -437444,7 +437444,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -437459,7 +437459,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemVersionField", "ApiReferenceLink": null, @@ -437474,7 +437474,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListOperation", "ApiReferenceLink": null, @@ -437489,7 +437489,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListSubscription", "ApiReferenceLink": null, @@ -437504,7 +437504,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenote", "ApiReferenceLink": null, @@ -437519,7 +437519,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -437534,7 +437534,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -437549,7 +437549,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -437564,7 +437564,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -437579,7 +437579,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -437594,7 +437594,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -437609,7 +437609,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -437624,7 +437624,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -437639,7 +437639,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -437654,7 +437654,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -437669,7 +437669,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -437684,7 +437684,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -437699,7 +437699,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -437714,7 +437714,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -437729,7 +437729,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOperation", "ApiReferenceLink": null, @@ -437744,7 +437744,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePage", "ApiReferenceLink": null, @@ -437759,7 +437759,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -437774,7 +437774,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -437789,7 +437789,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -437804,7 +437804,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -437819,7 +437819,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -437834,7 +437834,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -437849,7 +437849,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -437864,7 +437864,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePermission", "ApiReferenceLink": null, @@ -437879,7 +437879,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteRecycleBin", "ApiReferenceLink": null, @@ -437894,7 +437894,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteRecycleBinItem", "ApiReferenceLink": null, @@ -437909,7 +437909,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStore", "ApiReferenceLink": null, @@ -437924,7 +437924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -437939,7 +437939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -437954,7 +437954,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -437971,7 +437971,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -437988,7 +437988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -438003,7 +438003,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -438018,7 +438018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -438033,7 +438033,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -438048,7 +438048,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -438063,7 +438063,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -438078,7 +438078,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -438093,7 +438093,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -438110,7 +438110,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -438127,7 +438127,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -438142,7 +438142,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -438157,7 +438157,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -438174,7 +438174,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -438191,7 +438191,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -438206,7 +438206,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -438221,7 +438221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -438236,7 +438236,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -438251,7 +438251,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -438266,7 +438266,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -438281,7 +438281,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -438296,7 +438296,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -438311,7 +438311,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -438326,7 +438326,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -438341,7 +438341,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeam", "ApiReferenceLink": null, @@ -438356,7 +438356,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannel", "ApiReferenceLink": null, @@ -438371,7 +438371,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMember", "ApiReferenceLink": null, @@ -438386,7 +438386,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -438401,7 +438401,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -438416,7 +438416,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -438431,7 +438431,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -438446,7 +438446,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -438461,7 +438461,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelTab", "ApiReferenceLink": null, @@ -438476,7 +438476,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamInstalledApp", "ApiReferenceLink": null, @@ -438491,7 +438491,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamMember", "ApiReferenceLink": null, @@ -438506,7 +438506,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamOperation", "ApiReferenceLink": null, @@ -438521,7 +438521,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -438536,7 +438536,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannel", "ApiReferenceLink": null, @@ -438551,7 +438551,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -438566,7 +438566,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -438581,7 +438581,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -438596,7 +438596,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -438611,7 +438611,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -438626,7 +438626,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -438641,7 +438641,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -438656,7 +438656,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamSchedule", "ApiReferenceLink": null, @@ -438671,7 +438671,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleDayNote", "ApiReferenceLink": null, @@ -438686,7 +438686,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -438701,7 +438701,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -438716,7 +438716,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -438731,7 +438731,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -438746,7 +438746,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleShift", "ApiReferenceLink": null, @@ -438761,7 +438761,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -438776,7 +438776,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -438791,7 +438791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -438806,7 +438806,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -438821,7 +438821,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -438836,7 +438836,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -438851,7 +438851,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamTag", "ApiReferenceLink": null, @@ -438866,7 +438866,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamTagMember", "ApiReferenceLink": null, @@ -438881,7 +438881,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupThread", "ApiReferenceLink": null, @@ -438913,7 +438913,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostAttachment", "ApiReferenceLink": null, @@ -438928,7 +438928,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostExtension", "ApiReferenceLink": null, @@ -438943,7 +438943,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -438958,7 +438958,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -438973,7 +438973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostInReplyToMention", "ApiReferenceLink": null, @@ -438988,7 +438988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostMention", "ApiReferenceLink": null, @@ -439003,7 +439003,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityApiConnector", "ApiReferenceLink": null, @@ -439018,7 +439018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlow", "ApiReferenceLink": null, @@ -439033,7 +439033,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -439048,7 +439048,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderBaseByRef", "ApiReferenceLink": null, @@ -439063,7 +439063,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef", "ApiReferenceLink": null, @@ -439078,7 +439078,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef", "ApiReferenceLink": null, @@ -439093,7 +439093,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeIdentityUserFlowAttributeByRef", "ApiReferenceLink": null, @@ -439108,7 +439108,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -439123,7 +439123,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -439138,7 +439138,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlow", "ApiReferenceLink": null, @@ -439153,7 +439153,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowIdentityProviderByRef", "ApiReferenceLink": null, @@ -439170,7 +439170,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowLanguage", "ApiReferenceLink": null, @@ -439185,7 +439185,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -439200,7 +439200,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -439215,7 +439215,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -439230,7 +439230,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -439260,7 +439260,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -439275,7 +439275,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -439290,7 +439290,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -439305,7 +439305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPostAttributeCollection", "ApiReferenceLink": null, @@ -439320,7 +439320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef", "ApiReferenceLink": null, @@ -439335,7 +439335,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPostFederationSignup", "ApiReferenceLink": null, @@ -439350,7 +439350,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPostFederationSignupByRef", "ApiReferenceLink": null, @@ -439365,7 +439365,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPreTokenIssuance", "ApiReferenceLink": null, @@ -439380,7 +439380,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -439395,7 +439395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -439410,7 +439410,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationStrength", "ApiReferenceLink": null, @@ -439424,7 +439424,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", "ApiReferenceLink": null, @@ -439439,7 +439439,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -439454,7 +439454,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -439469,7 +439469,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -439501,7 +439501,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -439533,7 +439533,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityContinuouAccessEvaluationPolicy", "ApiReferenceLink": null, @@ -439547,7 +439547,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -439562,7 +439562,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecision", "ApiReferenceLink": null, @@ -439577,7 +439577,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInsight", "ApiReferenceLink": null, @@ -439592,7 +439592,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstance", "ApiReferenceLink": null, @@ -439607,7 +439607,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -439622,7 +439622,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", "ApiReferenceLink": null, @@ -439637,7 +439637,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -439652,7 +439652,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", "ApiReferenceLink": null, @@ -439667,7 +439667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", "ApiReferenceLink": null, @@ -439682,7 +439682,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -439697,7 +439697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -439712,7 +439712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -439727,7 +439727,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -439742,7 +439742,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -439757,7 +439757,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -439772,7 +439772,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInstance", "ApiReferenceLink": null, @@ -439787,7 +439787,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -439802,7 +439802,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -439817,7 +439817,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -439832,7 +439832,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInstance", "ApiReferenceLink": null, @@ -439847,7 +439847,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -439862,7 +439862,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -439877,7 +439877,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewPolicy", "ApiReferenceLink": null, @@ -439891,7 +439891,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -439906,7 +439906,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -439921,7 +439921,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApproval", "ApiReferenceLink": null, @@ -439936,7 +439936,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", "ApiReferenceLink": null, @@ -439951,7 +439951,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -439966,7 +439966,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -439981,7 +439981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItem", "ApiReferenceLink": null, @@ -439995,7 +439995,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": null, @@ -440010,7 +440010,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -440025,7 +440025,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -440040,7 +440040,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -440055,7 +440055,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalytic", "ApiReferenceLink": null, @@ -440069,7 +440069,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAw", "ApiReferenceLink": null, @@ -440083,7 +440083,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAwFinding", "ApiReferenceLink": null, @@ -440098,7 +440098,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -440113,7 +440113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAzure", "ApiReferenceLink": null, @@ -440127,7 +440127,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", "ApiReferenceLink": null, @@ -440142,7 +440142,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -440157,7 +440157,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticGcp", "ApiReferenceLink": null, @@ -440171,7 +440171,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", "ApiReferenceLink": null, @@ -440186,7 +440186,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -440201,7 +440201,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionManagement", "ApiReferenceLink": null, @@ -440215,7 +440215,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", "ApiReferenceLink": null, @@ -440230,7 +440230,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", "ApiReferenceLink": null, @@ -440245,7 +440245,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", "ApiReferenceLink": null, @@ -440260,7 +440260,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccess", "ApiReferenceLink": null, @@ -440274,7 +440274,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroup", "ApiReferenceLink": null, @@ -440288,7 +440288,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -440303,7 +440303,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", "ApiReferenceLink": null, @@ -440318,7 +440318,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -440333,7 +440333,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -440348,7 +440348,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -440363,7 +440363,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -440378,7 +440378,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -440393,7 +440393,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -440408,7 +440408,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlert", "ApiReferenceLink": null, @@ -440423,7 +440423,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", "ApiReferenceLink": null, @@ -440438,7 +440438,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlertDefinition", "ApiReferenceLink": null, @@ -440453,7 +440453,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlertIncident", "ApiReferenceLink": null, @@ -440468,7 +440468,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlertOperation", "ApiReferenceLink": null, @@ -440483,7 +440483,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -440498,7 +440498,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -440515,7 +440515,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -440530,7 +440530,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -440545,7 +440545,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -440560,7 +440560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -440575,7 +440575,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityProvider", "ApiReferenceLink": null, @@ -440590,7 +440590,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityUserFlow", "ApiReferenceLink": null, @@ -440605,7 +440605,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -440620,7 +440620,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -440635,7 +440635,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionPolicy", "ApiReferenceLink": null, @@ -440649,7 +440649,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -440664,7 +440664,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionSensitivityPolicySetting", "ApiReferenceLink": null, @@ -440678,7 +440678,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -440693,7 +440693,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -440708,7 +440708,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaInvitation", "ApiReferenceLink": null, @@ -440723,7 +440723,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delete?view=graph-rest-beta", @@ -440755,7 +440755,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfile", "ApiReferenceLink": null, @@ -440770,7 +440770,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgent", "ApiReferenceLink": null, @@ -440785,7 +440785,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroup", "ApiReferenceLink": null, @@ -440800,7 +440800,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupAgent", "ApiReferenceLink": null, @@ -440815,7 +440815,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupByRef", "ApiReferenceLink": null, @@ -440847,7 +440847,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", "ApiReferenceLink": null, @@ -440862,7 +440862,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", "ApiReferenceLink": null, @@ -440877,7 +440877,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupOnPremiseAgentGroupByRef", "ApiReferenceLink": null, @@ -440892,7 +440892,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileConnector", "ApiReferenceLink": null, @@ -440907,7 +440907,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileConnectorGroup", "ApiReferenceLink": null, @@ -440937,7 +440937,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef", "ApiReferenceLink": null, @@ -440967,7 +440967,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfilePublishedResource", "ApiReferenceLink": null, @@ -440997,7 +440997,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganization", "ApiReferenceLink": null, @@ -441012,7 +441012,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationBranding", "ApiReferenceLink": null, @@ -441044,7 +441044,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -441076,7 +441076,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationCertificateBasedAuthConfiguration", "ApiReferenceLink": null, @@ -441091,7 +441091,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationExtension", "ApiReferenceLink": null, @@ -441106,7 +441106,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationPartnerInformation", "ApiReferenceLink": null, @@ -441121,7 +441121,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSetting", "ApiReferenceLink": null, @@ -441136,7 +441136,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSettingContactInsight", "ApiReferenceLink": null, @@ -441151,7 +441151,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSettingItemInsight", "ApiReferenceLink": null, @@ -441166,7 +441166,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSettingMicrosoftApplicationDataAccess", "ApiReferenceLink": null, @@ -441181,7 +441181,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSettingPersonInsight", "ApiReferenceLink": null, @@ -441196,7 +441196,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlace", "ApiReferenceLink": null, @@ -441211,7 +441211,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -441226,7 +441226,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlaceAsRoomListWorkspace", "ApiReferenceLink": null, @@ -441241,7 +441241,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlaceByPlaceId", "ApiReferenceLink": null, @@ -441256,7 +441256,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlannerBucket", "ApiReferenceLink": null, @@ -441296,7 +441296,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlannerPlan", "ApiReferenceLink": null, @@ -441336,7 +441336,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlannerRoster", "ApiReferenceLink": null, @@ -441368,7 +441368,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlannerRosterMember", "ApiReferenceLink": null, @@ -441400,7 +441400,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlannerTask", "ApiReferenceLink": null, @@ -441440,7 +441440,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlannerTaskAssignedToTaskBoardFormat", "ApiReferenceLink": null, @@ -441455,7 +441455,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlannerTaskBucketTaskBoardFormat", "ApiReferenceLink": null, @@ -441470,7 +441470,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPlannerTaskProgressTaskBoardFormat", "ApiReferenceLink": null, @@ -441485,7 +441485,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAccessReviewPolicy", "ApiReferenceLink": null, @@ -441499,7 +441499,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -441531,7 +441531,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAdminConsentRequestPolicy", "ApiReferenceLink": null, @@ -441545,7 +441545,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -441577,7 +441577,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthenticationFlowPolicy", "ApiReferenceLink": null, @@ -441591,7 +441591,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthenticationMethodPolicy", "ApiReferenceLink": null, @@ -441605,7 +441605,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -441620,7 +441620,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -441652,7 +441652,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -441667,7 +441667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthorizationPolicy", "ApiReferenceLink": null, @@ -441682,7 +441682,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", "ApiReferenceLink": null, @@ -441697,7 +441697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyB2CAuthenticationMethodPolicy", "ApiReferenceLink": null, @@ -441711,7 +441711,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -441743,7 +441743,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicy", "ApiReferenceLink": null, @@ -441757,7 +441757,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyDefault", "ApiReferenceLink": null, @@ -441771,7 +441771,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -441786,7 +441786,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", "ApiReferenceLink": null, @@ -441801,7 +441801,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyTemplate", "ApiReferenceLink": null, @@ -441815,7 +441815,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", "ApiReferenceLink": null, @@ -441829,7 +441829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", "ApiReferenceLink": null, @@ -441843,7 +441843,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyDefaultAppManagementPolicy", "ApiReferenceLink": null, @@ -441857,7 +441857,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyDirectoryRoleAccessReviewPolicy", "ApiReferenceLink": null, @@ -441871,7 +441871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyExternalIdentityPolicy", "ApiReferenceLink": null, @@ -441885,7 +441885,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -441915,7 +441915,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyFederatedTokenValidationPolicy", "ApiReferenceLink": null, @@ -441929,7 +441929,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -441961,7 +441961,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyIdentitySecurityDefaultEnforcementPolicy", "ApiReferenceLink": null, @@ -441975,7 +441975,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyMobileAppManagementPolicy", "ApiReferenceLink": null, @@ -441990,7 +441990,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyMobileAppManagementPolicyIncludedGroupByRef", "ApiReferenceLink": null, @@ -442007,7 +442007,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyMobileDeviceManagementPolicy", "ApiReferenceLink": null, @@ -442022,7 +442022,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupByRef", "ApiReferenceLink": null, @@ -442039,7 +442039,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -442054,7 +442054,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -442069,7 +442069,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -442084,7 +442084,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -442099,7 +442099,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -442114,7 +442114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -442129,7 +442129,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -442144,7 +442144,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyServicePrincipalCreationPolicy", "ApiReferenceLink": null, @@ -442159,7 +442159,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyServicePrincipalCreationPolicyExclude", "ApiReferenceLink": null, @@ -442174,7 +442174,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyServicePrincipalCreationPolicyInclude", "ApiReferenceLink": null, @@ -442189,7 +442189,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -442221,7 +442221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -442253,7 +442253,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintConnector", "ApiReferenceLink": null, @@ -442268,7 +442268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintOperation", "ApiReferenceLink": null, @@ -442283,7 +442283,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinter", "ApiReferenceLink": null, @@ -442298,7 +442298,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterJob", "ApiReferenceLink": null, @@ -442313,7 +442313,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -442328,7 +442328,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterJobTask", "ApiReferenceLink": null, @@ -442343,7 +442343,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShare", "ApiReferenceLink": null, @@ -442358,7 +442358,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareAllowedGroupByRef", "ApiReferenceLink": null, @@ -442375,7 +442375,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareAllowedUserByRef", "ApiReferenceLink": null, @@ -442392,7 +442392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareJob", "ApiReferenceLink": null, @@ -442407,7 +442407,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareJobDocument", "ApiReferenceLink": null, @@ -442422,7 +442422,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareJobTask", "ApiReferenceLink": null, @@ -442437,7 +442437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -442469,7 +442469,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintService", "ApiReferenceLink": null, @@ -442484,7 +442484,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintServiceEndpoint", "ApiReferenceLink": null, @@ -442499,7 +442499,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintShare", "ApiReferenceLink": null, @@ -442514,7 +442514,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintShareAllowedGroupByRef", "ApiReferenceLink": null, @@ -442531,7 +442531,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintShareAllowedUserByRef", "ApiReferenceLink": null, @@ -442548,7 +442548,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintShareJob", "ApiReferenceLink": null, @@ -442563,7 +442563,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintShareJobDocument", "ApiReferenceLink": null, @@ -442578,7 +442578,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintShareJobTask", "ApiReferenceLink": null, @@ -442593,7 +442593,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintTaskDefinition", "ApiReferenceLink": null, @@ -442608,7 +442608,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -442623,7 +442623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -442638,7 +442638,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -442653,7 +442653,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccess", "ApiReferenceLink": null, @@ -442668,7 +442668,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResource", "ApiReferenceLink": null, @@ -442683,7 +442683,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignment", "ApiReferenceLink": null, @@ -442698,7 +442698,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", "ApiReferenceLink": null, @@ -442713,7 +442713,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinition", "ApiReferenceLink": null, @@ -442728,7 +442728,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentRequestSubject", "ApiReferenceLink": null, @@ -442743,7 +442743,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -442758,7 +442758,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentSubject", "ApiReferenceLink": null, @@ -442773,7 +442773,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleDefinition", "ApiReferenceLink": null, @@ -442788,7 +442788,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleSetting", "ApiReferenceLink": null, @@ -442803,7 +442803,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinition", "ApiReferenceLink": null, @@ -442818,7 +442818,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignment", "ApiReferenceLink": null, @@ -442833,7 +442833,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentRequest", "ApiReferenceLink": null, @@ -442848,7 +442848,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentRequestRoleDefinition", "ApiReferenceLink": null, @@ -442863,7 +442863,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentRequestSubject", "ApiReferenceLink": null, @@ -442878,7 +442878,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -442893,7 +442893,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentSubject", "ApiReferenceLink": null, @@ -442908,7 +442908,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleDefinition", "ApiReferenceLink": null, @@ -442923,7 +442923,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleSetting", "ApiReferenceLink": null, @@ -442938,7 +442938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleSettingRoleDefinition", "ApiReferenceLink": null, @@ -442953,7 +442953,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedApproval", "ApiReferenceLink": null, @@ -442968,7 +442968,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedApprovalRoleInfo", "ApiReferenceLink": null, @@ -442983,7 +442983,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedApprovalRoleInfoSetting", "ApiReferenceLink": null, @@ -442998,7 +442998,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedApprovalRoleInfoSummary", "ApiReferenceLink": null, @@ -443013,7 +443013,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedOperationEvent", "ApiReferenceLink": null, @@ -443028,7 +443028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRole", "ApiReferenceLink": null, @@ -443043,7 +443043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignment", "ApiReferenceLink": null, @@ -443058,7 +443058,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRequest", "ApiReferenceLink": null, @@ -443073,7 +443073,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRequestRoleInfo", "ApiReferenceLink": null, @@ -443088,7 +443088,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSetting", "ApiReferenceLink": null, @@ -443103,7 +443103,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSummary", "ApiReferenceLink": null, @@ -443118,7 +443118,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRoleInfo", "ApiReferenceLink": null, @@ -443133,7 +443133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRoleInfoSetting", "ApiReferenceLink": null, @@ -443148,7 +443148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRoleInfoSummary", "ApiReferenceLink": null, @@ -443163,7 +443163,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleSetting", "ApiReferenceLink": null, @@ -443178,7 +443178,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleSummary", "ApiReferenceLink": null, @@ -443193,7 +443193,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaProgram", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-delete?view=graph-rest-beta", @@ -443208,7 +443208,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaProgramControl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-delete?view=graph-rest-beta", @@ -443227,7 +443227,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaProgramControlProgram", "ApiReferenceLink": null, @@ -443244,7 +443244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaProgramControlType", "ApiReferenceLink": null, @@ -443259,7 +443259,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -443274,7 +443274,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBilling", "ApiReferenceLink": null, @@ -443288,7 +443288,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -443303,7 +443303,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -443318,7 +443318,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingReconciliation", "ApiReferenceLink": null, @@ -443332,7 +443332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingReconciliationBilled", "ApiReferenceLink": null, @@ -443346,7 +443346,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingUsage", "ApiReferenceLink": null, @@ -443360,7 +443360,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingUsageBilled", "ApiReferenceLink": null, @@ -443374,7 +443374,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingUsageUnbilled", "ApiReferenceLink": null, @@ -443388,7 +443388,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportSlaAzureAdAuthentication", "ApiReferenceLink": null, @@ -443402,7 +443402,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportUserInsightDaily", "ApiReferenceLink": null, @@ -443416,7 +443416,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaReportUserInsightMonthly", "ApiReferenceLink": null, @@ -443430,7 +443430,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRiskDetection", "ApiReferenceLink": null, @@ -443445,7 +443445,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRiskyServicePrincipal", "ApiReferenceLink": null, @@ -443460,7 +443460,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -443475,7 +443475,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRiskyUser", "ApiReferenceLink": null, @@ -443490,7 +443490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRiskyUserHistory", "ApiReferenceLink": null, @@ -443505,7 +443505,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPc", "ApiReferenceLink": null, @@ -443519,7 +443519,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcResourceNamespace", "ApiReferenceLink": null, @@ -443534,7 +443534,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -443549,7 +443549,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -443564,7 +443564,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcRoleAssignment", "ApiReferenceLink": null, @@ -443596,7 +443596,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -443611,7 +443611,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcRoleDefinition", "ApiReferenceLink": null, @@ -443667,7 +443667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -443682,7 +443682,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagement", "ApiReferenceLink": null, @@ -443696,7 +443696,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementResourceNamespace", "ApiReferenceLink": null, @@ -443711,7 +443711,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -443726,7 +443726,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -443741,7 +443741,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -443773,7 +443773,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -443788,7 +443788,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -443844,7 +443844,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -443859,7 +443859,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectory", "ApiReferenceLink": null, @@ -443873,7 +443873,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -443888,7 +443888,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -443903,7 +443903,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -443918,7 +443918,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -443933,7 +443933,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentApproval", "ApiReferenceLink": null, @@ -443948,7 +443948,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -443963,7 +443963,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -443978,7 +443978,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -443993,7 +443993,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -444008,7 +444008,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -444023,7 +444023,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -444055,7 +444055,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -444070,7 +444070,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -444085,7 +444085,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -444100,7 +444100,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -444115,7 +444115,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -444130,7 +444130,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -444145,7 +444145,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseApp", "ApiReferenceLink": null, @@ -444160,7 +444160,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppResourceNamespace", "ApiReferenceLink": null, @@ -444175,7 +444175,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -444190,7 +444190,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -444205,7 +444205,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignment", "ApiReferenceLink": null, @@ -444220,7 +444220,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", "ApiReferenceLink": null, @@ -444235,7 +444235,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -444250,7 +444250,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -444265,7 +444265,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -444280,7 +444280,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -444295,7 +444295,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -444310,7 +444310,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleDefinition", "ApiReferenceLink": null, @@ -444325,7 +444325,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -444340,7 +444340,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -444355,7 +444355,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -444370,7 +444370,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -444385,7 +444385,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -444400,7 +444400,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -444415,7 +444415,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagement", "ApiReferenceLink": null, @@ -444429,7 +444429,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -444444,7 +444444,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -444459,7 +444459,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -444474,7 +444474,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -444506,7 +444506,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", "ApiReferenceLink": null, @@ -444521,7 +444521,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -444536,7 +444536,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -444551,7 +444551,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -444566,7 +444566,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -444581,7 +444581,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -444596,7 +444596,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -444611,7 +444611,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -444626,7 +444626,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -444641,7 +444641,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -444656,7 +444656,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -444671,7 +444671,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -444686,7 +444686,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -444701,7 +444701,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchange", "ApiReferenceLink": null, @@ -444715,7 +444715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeCustomAppScope", "ApiReferenceLink": null, @@ -444730,7 +444730,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeResourceNamespace", "ApiReferenceLink": null, @@ -444745,7 +444745,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -444760,7 +444760,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -444775,7 +444775,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeRoleAssignment", "ApiReferenceLink": null, @@ -444790,7 +444790,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -444805,7 +444805,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeRoleDefinition", "ApiReferenceLink": null, @@ -444820,7 +444820,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -444835,7 +444835,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -444850,7 +444850,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -444865,7 +444865,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-delete?view=graph-rest-beta", @@ -444897,7 +444897,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSearchAcronym", "ApiReferenceLink": null, @@ -444929,7 +444929,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSearchBookmark", "ApiReferenceLink": null, @@ -444961,7 +444961,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSearchQna", "ApiReferenceLink": null, @@ -444993,7 +444993,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAction", "ApiReferenceLink": null, @@ -445008,7 +445008,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAlertV2", "ApiReferenceLink": null, @@ -445023,7 +445023,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulation", "ApiReferenceLink": null, @@ -445039,7 +445039,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -445054,7 +445054,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -445069,7 +445069,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -445084,7 +445084,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -445099,7 +445099,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -445114,7 +445114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -445129,7 +445129,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -445144,7 +445144,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -445159,7 +445159,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -445174,7 +445174,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -445189,7 +445189,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationTrainingCampaign", "ApiReferenceLink": null, @@ -445204,7 +445204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -445219,7 +445219,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAuditLog", "ApiReferenceLink": null, @@ -445233,7 +445233,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAuditLogQuery", "ApiReferenceLink": null, @@ -445248,7 +445248,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityAuditLogQueryRecord", "ApiReferenceLink": null, @@ -445263,7 +445263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCase", "ApiReferenceLink": null, @@ -445277,7 +445277,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -445309,7 +445309,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -445324,7 +445324,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-removehold?view=graph-rest-beta", @@ -445360,7 +445360,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -445375,7 +445375,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -445390,7 +445390,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -445405,7 +445405,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -445437,7 +445437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -445452,7 +445452,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -445467,7 +445467,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -445482,7 +445482,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-removehold?view=graph-rest-beta", @@ -445518,7 +445518,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -445533,7 +445533,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -445548,7 +445548,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", "ApiReferenceLink": null, @@ -445563,7 +445563,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -445578,7 +445578,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -445610,7 +445610,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -445625,7 +445625,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseSetting", "ApiReferenceLink": null, @@ -445640,7 +445640,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -445672,7 +445672,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCloudAppSecurityProfile", "ApiReferenceLink": null, @@ -445687,7 +445687,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCollaboration", "ApiReferenceLink": null, @@ -445701,7 +445701,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityCollaborationAnalyzedEmail", "ApiReferenceLink": null, @@ -445716,7 +445716,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityDomainSecurityProfile", "ApiReferenceLink": null, @@ -445731,7 +445731,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityFileSecurityProfile", "ApiReferenceLink": null, @@ -445746,7 +445746,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityHostSecurityProfile", "ApiReferenceLink": null, @@ -445761,7 +445761,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityIdentity", "ApiReferenceLink": null, @@ -445775,7 +445775,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityIdentityHealthIssue", "ApiReferenceLink": null, @@ -445790,7 +445790,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityIncident", "ApiReferenceLink": null, @@ -445805,7 +445805,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityInformationProtection", "ApiReferenceLink": null, @@ -445819,7 +445819,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityInformationProtectionLabelPolicySetting", "ApiReferenceLink": null, @@ -445833,7 +445833,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -445848,7 +445848,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityInformationProtectionSensitivityLabelParent", "ApiReferenceLink": null, @@ -445863,7 +445863,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityIPSecurityProfile", "ApiReferenceLink": null, @@ -445878,7 +445878,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabel", "ApiReferenceLink": null, @@ -445892,7 +445892,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelAuthority", "ApiReferenceLink": null, @@ -445907,7 +445907,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelCategory", "ApiReferenceLink": null, @@ -445922,7 +445922,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -445937,7 +445937,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelCitation", "ApiReferenceLink": null, @@ -445952,7 +445952,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelDepartment", "ApiReferenceLink": null, @@ -445967,7 +445967,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -445982,7 +445982,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -445997,7 +445997,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelRetentionLabelDescriptor", "ApiReferenceLink": null, @@ -446012,7 +446012,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -446027,7 +446027,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityProviderTenantSetting", "ApiReferenceLink": null, @@ -446042,7 +446042,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityRule", "ApiReferenceLink": null, @@ -446056,7 +446056,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityRuleDetectionRule", "ApiReferenceLink": null, @@ -446071,7 +446071,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecuritySecureScore", "ApiReferenceLink": null, @@ -446086,7 +446086,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -446101,7 +446101,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -446116,7 +446116,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -446131,7 +446131,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligence", "ApiReferenceLink": null, @@ -446145,7 +446145,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -446160,7 +446160,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -446175,7 +446175,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -446190,7 +446190,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -446205,7 +446205,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -446220,7 +446220,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -446235,7 +446235,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -446250,7 +446250,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostReputation", "ApiReferenceLink": null, @@ -446265,7 +446265,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -446280,7 +446280,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -446295,7 +446295,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -446310,7 +446310,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -446325,7 +446325,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -446340,7 +446340,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -446355,7 +446355,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -446370,7 +446370,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -446385,7 +446385,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -446400,7 +446400,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -446415,7 +446415,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -446430,7 +446430,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmission", "ApiReferenceLink": null, @@ -446444,7 +446444,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmissionEmailThreat", "ApiReferenceLink": null, @@ -446459,7 +446459,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", "ApiReferenceLink": null, @@ -446474,7 +446474,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmissionFileThreat", "ApiReferenceLink": null, @@ -446489,7 +446489,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmissionUrlThreat", "ApiReferenceLink": null, @@ -446504,7 +446504,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityTiIndicator", "ApiReferenceLink": null, @@ -446519,7 +446519,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaSecurityTiIndicatorByExternalId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-deletetiindicatorsbyexternalid?view=graph-rest-beta", @@ -446534,7 +446534,7 @@ "OutputType": "IMicrosoftGraphResultInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaSecurityTiIndicatorMultiple", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-deletetiindicators?view=graph-rest-beta", @@ -446549,7 +446549,7 @@ "OutputType": "IMicrosoftGraphResultInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityTrigger", "ApiReferenceLink": null, @@ -446563,7 +446563,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -446578,7 +446578,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityTriggerType", "ApiReferenceLink": null, @@ -446592,7 +446592,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -446607,7 +446607,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSecurityUserSecurityProfile", "ApiReferenceLink": null, @@ -446622,7 +446622,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -446637,7 +446637,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -446652,7 +446652,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -446667,7 +446667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -446682,7 +446682,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -446697,7 +446697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-beta", @@ -446737,7 +446737,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -446752,7 +446752,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -446767,7 +446767,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-beta", @@ -446838,7 +446838,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -446853,7 +446853,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -446924,7 +446924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalLicenseDetail", "ApiReferenceLink": null, @@ -446979,7 +446979,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaServicePrincipalPasswordSingleSignOnCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-deletepasswordsinglesignoncredentials?view=graph-rest-beta", @@ -447021,7 +447021,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration", "ApiReferenceLink": null, @@ -447036,7 +447036,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -447051,7 +447051,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -447066,7 +447066,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronization", "ApiReferenceLink": null, @@ -447081,7 +447081,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -447113,7 +447113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -447128,7 +447128,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationJobSchema", "ApiReferenceLink": null, @@ -447168,7 +447168,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -447183,7 +447183,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -447198,7 +447198,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -447213,7 +447213,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -447228,7 +447228,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareList", "ApiReferenceLink": null, @@ -447243,7 +447243,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListColumn", "ApiReferenceLink": null, @@ -447258,7 +447258,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListContentType", "ApiReferenceLink": null, @@ -447273,7 +447273,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListContentTypeColumn", "ApiReferenceLink": null, @@ -447288,7 +447288,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -447303,7 +447303,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListItem", "ApiReferenceLink": null, @@ -447320,7 +447320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -447337,7 +447337,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -447354,7 +447354,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListItemField", "ApiReferenceLink": null, @@ -447371,7 +447371,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListItemVersion", "ApiReferenceLink": null, @@ -447388,7 +447388,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListItemVersionField", "ApiReferenceLink": null, @@ -447405,7 +447405,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListOperation", "ApiReferenceLink": null, @@ -447420,7 +447420,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareListSubscription", "ApiReferenceLink": null, @@ -447435,7 +447435,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSharePermission", "ApiReferenceLink": null, @@ -447450,7 +447450,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": null, @@ -447465,7 +447465,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteAnalytic", "ApiReferenceLink": null, @@ -447480,7 +447480,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -447495,7 +447495,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -447510,7 +447510,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteColumn", "ApiReferenceLink": null, @@ -447542,7 +447542,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteContentType", "ApiReferenceLink": null, @@ -447574,7 +447574,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteContentTypeColumn", "ApiReferenceLink": null, @@ -447606,7 +447606,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -447621,7 +447621,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -447638,7 +447638,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -447655,7 +447655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -447672,7 +447672,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteList", "ApiReferenceLink": null, @@ -447687,7 +447687,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListColumn", "ApiReferenceLink": null, @@ -447719,7 +447719,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListContentType", "ApiReferenceLink": null, @@ -447751,7 +447751,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -447783,7 +447783,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -447798,7 +447798,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListItem", "ApiReferenceLink": null, @@ -447813,7 +447813,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemActivity", "ApiReferenceLink": null, @@ -447828,7 +447828,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -447876,7 +447876,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -447891,7 +447891,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemField", "ApiReferenceLink": null, @@ -447906,7 +447906,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemVersion", "ApiReferenceLink": null, @@ -447921,7 +447921,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemVersionField", "ApiReferenceLink": null, @@ -447936,7 +447936,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListOperation", "ApiReferenceLink": null, @@ -447951,7 +447951,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteListSubscription", "ApiReferenceLink": null, @@ -447966,7 +447966,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -447981,7 +447981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteOnenotePage", "ApiReferenceLink": null, @@ -448013,7 +448013,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteOnenoteSection", "ApiReferenceLink": null, @@ -448028,7 +448028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -448043,7 +448043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteOperation", "ApiReferenceLink": null, @@ -448058,7 +448058,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSitePage", "ApiReferenceLink": null, @@ -448073,7 +448073,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -448088,7 +448088,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -448103,7 +448103,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -448118,7 +448118,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -448133,7 +448133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -448148,7 +448148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -448163,7 +448163,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -448178,7 +448178,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSitePermission", "ApiReferenceLink": null, @@ -448193,7 +448193,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStore", "ApiReferenceLink": null, @@ -448208,7 +448208,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroup", "ApiReferenceLink": null, @@ -448223,7 +448223,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -448238,7 +448238,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -448255,7 +448255,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -448272,7 +448272,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -448287,7 +448287,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -448302,7 +448302,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -448317,7 +448317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -448332,7 +448332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -448347,7 +448347,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -448362,7 +448362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSet", "ApiReferenceLink": null, @@ -448377,7 +448377,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -448394,7 +448394,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -448411,7 +448411,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -448426,7 +448426,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -448441,7 +448441,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -448458,7 +448458,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -448475,7 +448475,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -448490,7 +448490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -448505,7 +448505,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -448520,7 +448520,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -448535,7 +448535,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -448550,7 +448550,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -448565,7 +448565,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -448580,7 +448580,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -448595,7 +448595,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -448610,7 +448610,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -448625,7 +448625,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSubscribedSku", "ApiReferenceLink": null, @@ -448640,7 +448640,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-delete?view=graph-rest-beta", @@ -448655,7 +448655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeam", "ApiReferenceLink": null, @@ -448670,7 +448670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamChannel", "ApiReferenceLink": null, @@ -448718,7 +448718,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaTeamChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-beta", @@ -448733,7 +448733,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamChannelMember", "ApiReferenceLink": null, @@ -448748,7 +448748,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -448763,7 +448763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -448778,7 +448778,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamChannelTab", "ApiReferenceLink": null, @@ -448866,7 +448866,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamInstalledApp", "ApiReferenceLink": null, @@ -448946,7 +448946,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamMember", "ApiReferenceLink": null, @@ -448961,7 +448961,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamOperation", "ApiReferenceLink": null, @@ -448976,7 +448976,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamPermissionGrant", "ApiReferenceLink": null, @@ -448991,7 +448991,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannel", "ApiReferenceLink": null, @@ -449006,7 +449006,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaTeamPrimaryChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-beta", @@ -449021,7 +449021,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -449036,7 +449036,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -449051,7 +449051,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -449066,7 +449066,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -449081,7 +449081,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamSchedule", "ApiReferenceLink": null, @@ -449096,7 +449096,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleDayNote", "ApiReferenceLink": null, @@ -449111,7 +449111,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -449126,7 +449126,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -449158,7 +449158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -449173,7 +449173,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -449205,7 +449205,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleShift", "ApiReferenceLink": null, @@ -449245,7 +449245,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -449260,7 +449260,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -449275,7 +449275,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -449290,7 +449290,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -449322,7 +449322,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -449354,7 +449354,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -449386,7 +449386,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamTag", "ApiReferenceLink": null, @@ -449418,7 +449418,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamTagMember", "ApiReferenceLink": null, @@ -449450,7 +449450,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedChat", "ApiReferenceLink": null, @@ -449465,7 +449465,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -449480,7 +449480,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -449495,7 +449495,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-beta", @@ -449510,7 +449510,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -449525,7 +449525,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -449540,7 +449540,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -449555,7 +449555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -449570,7 +449570,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -449585,7 +449585,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -449600,7 +449600,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -449615,7 +449615,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDevice", "ApiReferenceLink": null, @@ -449630,7 +449630,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeviceActivity", "ApiReferenceLink": null, @@ -449645,7 +449645,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeviceConfiguration", "ApiReferenceLink": null, @@ -449660,7 +449660,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeviceHealth", "ApiReferenceLink": null, @@ -449675,7 +449675,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeviceOperation", "ApiReferenceLink": null, @@ -449690,7 +449690,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkTeamAppSetting", "ApiReferenceLink": null, @@ -449704,7 +449704,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkTeamTemplate", "ApiReferenceLink": null, @@ -449719,7 +449719,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkTeamTemplateDefinition", "ApiReferenceLink": null, @@ -449734,7 +449734,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -449749,7 +449749,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -449764,7 +449764,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -449779,7 +449779,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -449794,7 +449794,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -449809,7 +449809,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -449824,7 +449824,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -449839,7 +449839,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenant", "ApiReferenceLink": null, @@ -449854,7 +449854,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", "ApiReferenceLink": null, @@ -449869,7 +449869,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAlert", "ApiReferenceLink": null, @@ -449884,7 +449884,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAlertLog", "ApiReferenceLink": null, @@ -449899,7 +449899,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAlertRule", "ApiReferenceLink": null, @@ -449914,7 +449914,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", "ApiReferenceLink": null, @@ -449929,7 +449929,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantApiNotification", "ApiReferenceLink": null, @@ -449944,7 +449944,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAppPerformance", "ApiReferenceLink": null, @@ -449959,7 +449959,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAuditEvent", "ApiReferenceLink": null, @@ -449974,7 +449974,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCloudPcConnection", "ApiReferenceLink": null, @@ -449989,7 +449989,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCloudPcDevice", "ApiReferenceLink": null, @@ -450004,7 +450004,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCloudPcOverview", "ApiReferenceLink": null, @@ -450019,7 +450019,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", "ApiReferenceLink": null, @@ -450034,7 +450034,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", "ApiReferenceLink": null, @@ -450049,7 +450049,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCustomizedInformation", "ApiReferenceLink": null, @@ -450064,7 +450064,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantDetailedInformation", "ApiReferenceLink": null, @@ -450079,7 +450079,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", "ApiReferenceLink": null, @@ -450094,7 +450094,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -450109,7 +450109,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", "ApiReferenceLink": null, @@ -450124,7 +450124,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantEmailNotification", "ApiReferenceLink": null, @@ -450139,7 +450139,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantGroup", "ApiReferenceLink": null, @@ -450154,7 +450154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", "ApiReferenceLink": null, @@ -450169,7 +450169,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", "ApiReferenceLink": null, @@ -450184,7 +450184,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementAction", "ApiReferenceLink": null, @@ -450199,7 +450199,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", "ApiReferenceLink": null, @@ -450214,7 +450214,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementIntent", "ApiReferenceLink": null, @@ -450229,7 +450229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplate", "ApiReferenceLink": null, @@ -450244,7 +450244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", "ApiReferenceLink": null, @@ -450259,7 +450259,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", "ApiReferenceLink": null, @@ -450274,7 +450274,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", "ApiReferenceLink": null, @@ -450289,7 +450289,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", "ApiReferenceLink": null, @@ -450304,7 +450304,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", "ApiReferenceLink": null, @@ -450319,7 +450319,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", "ApiReferenceLink": null, @@ -450334,7 +450334,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantMyRole", "ApiReferenceLink": null, @@ -450349,7 +450349,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantTag", "ApiReferenceLink": null, @@ -450364,7 +450364,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", "ApiReferenceLink": null, @@ -450379,7 +450379,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", "ApiReferenceLink": null, @@ -450394,7 +450394,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", "ApiReferenceLink": null, @@ -450409,7 +450409,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -450424,7 +450424,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTrustFrameworkKeySet", "ApiReferenceLink": null, @@ -450439,7 +450439,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaTrustFrameworkPolicy", "ApiReferenceLink": null, @@ -450454,7 +450454,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-delete?view=graph-rest-beta", @@ -450510,7 +450510,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserActivity", "ApiReferenceLink": null, @@ -450525,7 +450525,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserActivityHistoryItem", "ApiReferenceLink": null, @@ -450540,7 +450540,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserActivityStatistics", "ApiReferenceLink": null, @@ -450555,7 +450555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAppRoleAssignment", "ApiReferenceLink": null, @@ -450570,7 +450570,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -450602,7 +450602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationFido2Method", "ApiReferenceLink": null, @@ -450634,7 +450634,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationMicrosoftAuthenticatorMethod", "ApiReferenceLink": null, @@ -450666,7 +450666,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationOperation", "ApiReferenceLink": null, @@ -450681,7 +450681,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "ApiReferenceLink": null, @@ -450713,7 +450713,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -450745,7 +450745,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationPlatformCredentialMethod", "ApiReferenceLink": null, @@ -450760,7 +450760,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationSoftwareOathMethod", "ApiReferenceLink": null, @@ -450792,7 +450792,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationTemporaryAccessPassMethod", "ApiReferenceLink": null, @@ -450824,7 +450824,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationWindowsHelloForBusinessMethod", "ApiReferenceLink": null, @@ -450856,7 +450856,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserCalendarGroup", "ApiReferenceLink": null, @@ -450871,7 +450871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserCalendarPermission", "ApiReferenceLink": null, @@ -450888,7 +450888,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChat", "ApiReferenceLink": null, @@ -450903,7 +450903,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaUserChatAccessForUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-removeallaccessforuser?view=graph-rest-beta", @@ -450920,7 +450920,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatInstalledApp", "ApiReferenceLink": null, @@ -450935,7 +450935,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatLastMessagePreview", "ApiReferenceLink": null, @@ -450950,7 +450950,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatMember", "ApiReferenceLink": null, @@ -450965,7 +450965,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatMessage", "ApiReferenceLink": null, @@ -450980,7 +450980,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -450995,7 +450995,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatMessageReply", "ApiReferenceLink": null, @@ -451010,7 +451010,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -451025,7 +451025,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatOperation", "ApiReferenceLink": null, @@ -451040,7 +451040,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatPermissionGrant", "ApiReferenceLink": null, @@ -451055,7 +451055,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatPinnedMessage", "ApiReferenceLink": null, @@ -451070,7 +451070,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserChatTab", "ApiReferenceLink": null, @@ -451085,7 +451085,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserContact", "ApiReferenceLink": null, @@ -451100,7 +451100,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserContactExtension", "ApiReferenceLink": null, @@ -451115,7 +451115,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolder", "ApiReferenceLink": null, @@ -451130,7 +451130,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -451145,7 +451145,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -451160,7 +451160,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -451175,7 +451175,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderContact", "ApiReferenceLink": null, @@ -451190,7 +451190,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -451205,7 +451205,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDevice", "ApiReferenceLink": null, @@ -451220,7 +451220,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceByDeviceId", "ApiReferenceLink": null, @@ -451235,7 +451235,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceCommand", "ApiReferenceLink": null, @@ -451250,7 +451250,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -451265,7 +451265,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -451280,7 +451280,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceExtension", "ApiReferenceLink": null, @@ -451295,7 +451295,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -451340,7 +451340,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceUsageRights", "ApiReferenceLink": null, @@ -451355,7 +451355,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDrive", "ApiReferenceLink": null, @@ -451370,7 +451370,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItem", "ApiReferenceLink": null, @@ -451385,7 +451385,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemAnalytic", "ApiReferenceLink": null, @@ -451400,7 +451400,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -451415,7 +451415,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItem", "ApiReferenceLink": null, @@ -451430,7 +451430,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -451445,7 +451445,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -451460,7 +451460,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemField", "ApiReferenceLink": null, @@ -451475,7 +451475,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -451490,7 +451490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -451505,7 +451505,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaUserDriveItemPermanent", "ApiReferenceLink": null, @@ -451520,7 +451520,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemPermission", "ApiReferenceLink": null, @@ -451535,7 +451535,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -451550,7 +451550,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemSubscription", "ApiReferenceLink": null, @@ -451565,7 +451565,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -451580,7 +451580,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemVersion", "ApiReferenceLink": null, @@ -451595,7 +451595,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveList", "ApiReferenceLink": null, @@ -451610,7 +451610,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListColumn", "ApiReferenceLink": null, @@ -451625,7 +451625,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListContentType", "ApiReferenceLink": null, @@ -451640,7 +451640,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -451655,7 +451655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -451670,7 +451670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItem", "ApiReferenceLink": null, @@ -451685,7 +451685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -451700,7 +451700,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -451715,7 +451715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemField", "ApiReferenceLink": null, @@ -451730,7 +451730,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemVersion", "ApiReferenceLink": null, @@ -451745,7 +451745,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemVersionField", "ApiReferenceLink": null, @@ -451760,7 +451760,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListOperation", "ApiReferenceLink": null, @@ -451775,7 +451775,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListSubscription", "ApiReferenceLink": null, @@ -451790,7 +451790,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRoot", "ApiReferenceLink": null, @@ -451805,7 +451805,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootAnalytic", "ApiReferenceLink": null, @@ -451820,7 +451820,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -451835,7 +451835,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItem", "ApiReferenceLink": null, @@ -451850,7 +451850,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -451865,7 +451865,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -451880,7 +451880,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemField", "ApiReferenceLink": null, @@ -451895,7 +451895,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -451910,7 +451910,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -451925,7 +451925,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaUserDriveRootPermanent", "ApiReferenceLink": null, @@ -451940,7 +451940,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootPermission", "ApiReferenceLink": null, @@ -451955,7 +451955,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -451970,7 +451970,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootSubscription", "ApiReferenceLink": null, @@ -451985,7 +451985,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -452000,7 +452000,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootVersion", "ApiReferenceLink": null, @@ -452015,7 +452015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEvent", "ApiReferenceLink": null, @@ -452030,7 +452030,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventAttachment", "ApiReferenceLink": null, @@ -452045,7 +452045,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -452060,7 +452060,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -452075,7 +452075,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventExceptionOccurrenceInstanceAttachment", "ApiReferenceLink": null, @@ -452090,7 +452090,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -452105,7 +452105,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventExtension", "ApiReferenceLink": null, @@ -452120,7 +452120,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventInstanceAttachment", "ApiReferenceLink": null, @@ -452135,7 +452135,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventInstanceExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -452150,7 +452150,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -452165,7 +452165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserEventInstanceExtension", "ApiReferenceLink": null, @@ -452180,7 +452180,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserExtension", "ApiReferenceLink": null, @@ -452195,7 +452195,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaUserFollowedSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-beta", @@ -452212,7 +452212,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInferenceClassificationOverride", "ApiReferenceLink": null, @@ -452227,7 +452227,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtection", "ApiReferenceLink": null, @@ -452242,7 +452242,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -452257,7 +452257,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionPolicy", "ApiReferenceLink": null, @@ -452272,7 +452272,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -452287,7 +452287,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -452302,7 +452302,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -452317,7 +452317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionSensitivityPolicySetting", "ApiReferenceLink": null, @@ -452332,7 +452332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -452347,7 +452347,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -452362,7 +452362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInsight", "ApiReferenceLink": null, @@ -452377,7 +452377,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInsightShared", "ApiReferenceLink": null, @@ -452392,7 +452392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInsightTrending", "ApiReferenceLink": null, @@ -452407,7 +452407,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserInsightUsed", "ApiReferenceLink": null, @@ -452422,7 +452422,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserLicenseDetail", "ApiReferenceLink": null, @@ -452437,7 +452437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolder", "ApiReferenceLink": null, @@ -452452,7 +452452,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -452467,7 +452467,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -452482,7 +452482,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessageAttachment", "ApiReferenceLink": null, @@ -452497,7 +452497,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -452512,7 +452512,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessageMention", "ApiReferenceLink": null, @@ -452527,7 +452527,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessageRule", "ApiReferenceLink": null, @@ -452542,7 +452542,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessage", "ApiReferenceLink": null, @@ -452557,7 +452557,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessageAttachment", "ApiReferenceLink": null, @@ -452572,7 +452572,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -452587,7 +452587,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessageMention", "ApiReferenceLink": null, @@ -452602,7 +452602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessageRule", "ApiReferenceLink": null, @@ -452617,7 +452617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDevice", "ApiReferenceLink": null, @@ -452632,7 +452632,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -452647,7 +452647,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceCategory", "ApiReferenceLink": null, @@ -452662,7 +452662,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -452677,7 +452677,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -452692,7 +452692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaUserManagedDeviceFirmwareConfigurationInterfaceManagement", "ApiReferenceLink": null, @@ -452707,7 +452707,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -452722,7 +452722,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -452737,7 +452737,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -452752,7 +452752,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -452767,7 +452767,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -452782,7 +452782,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaUserManagedDeviceUserFromSharedAppleDevice", "ApiReferenceLink": null, @@ -452799,7 +452799,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -452814,7 +452814,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -452829,7 +452829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserManagerByRef", "ApiReferenceLink": null, @@ -452861,7 +452861,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMessage", "ApiReferenceLink": null, @@ -452876,7 +452876,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMessageAttachment", "ApiReferenceLink": null, @@ -452891,7 +452891,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMessageExtension", "ApiReferenceLink": null, @@ -452906,7 +452906,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMessageMention", "ApiReferenceLink": null, @@ -452921,7 +452921,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMobileAppIntentAndState", "ApiReferenceLink": null, @@ -452936,7 +452936,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -452951,7 +452951,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -452966,7 +452966,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserNotification", "ApiReferenceLink": null, @@ -452981,7 +452981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnenoteNotebook", "ApiReferenceLink": null, @@ -452996,7 +452996,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnenotePage", "ApiReferenceLink": null, @@ -453028,7 +453028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnenoteSection", "ApiReferenceLink": null, @@ -453043,7 +453043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -453058,7 +453058,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeeting", "ApiReferenceLink": null, @@ -453090,7 +453090,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -453107,7 +453107,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -453124,7 +453124,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingByJoinWebUrl", "ApiReferenceLink": null, @@ -453139,7 +453139,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -453154,7 +453154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingRegistration", "ApiReferenceLink": null, @@ -453186,7 +453186,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -453201,7 +453201,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -453241,7 +453241,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -453256,7 +453256,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookMasterCategory", "ApiReferenceLink": null, @@ -453271,7 +453271,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTask", "ApiReferenceLink": null, @@ -453286,7 +453286,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskAttachment", "ApiReferenceLink": null, @@ -453301,7 +453301,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskFolder", "ApiReferenceLink": null, @@ -453316,7 +453316,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskFolderTask", "ApiReferenceLink": null, @@ -453331,7 +453331,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskFolderTaskAttachment", "ApiReferenceLink": null, @@ -453346,7 +453346,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskGroup", "ApiReferenceLink": null, @@ -453361,7 +453361,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskGroupTaskFolder", "ApiReferenceLink": null, @@ -453376,7 +453376,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskGroupTaskFolderTask", "ApiReferenceLink": null, @@ -453391,7 +453391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachment", "ApiReferenceLink": null, @@ -453406,7 +453406,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgBetaUserPasswordSingleSignOnCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-deletepasswordsinglesignoncredentials?view=graph-rest-beta", @@ -453448,7 +453448,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserPhoto", "ApiReferenceLink": null, @@ -453488,7 +453488,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserPresence", "ApiReferenceLink": null, @@ -453503,7 +453503,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfile", "ApiReferenceLink": null, @@ -453535,7 +453535,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileAccount", "ApiReferenceLink": null, @@ -453567,7 +453567,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileAddress", "ApiReferenceLink": null, @@ -453599,7 +453599,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileAnniversary", "ApiReferenceLink": null, @@ -453631,7 +453631,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileAward", "ApiReferenceLink": null, @@ -453663,7 +453663,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileCertification", "ApiReferenceLink": null, @@ -453695,7 +453695,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileEducationalActivity", "ApiReferenceLink": null, @@ -453727,7 +453727,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileEmail", "ApiReferenceLink": null, @@ -453759,7 +453759,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileInterest", "ApiReferenceLink": null, @@ -453791,7 +453791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileLanguage", "ApiReferenceLink": null, @@ -453823,7 +453823,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileName", "ApiReferenceLink": null, @@ -453855,7 +453855,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileNote", "ApiReferenceLink": null, @@ -453911,7 +453911,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfilePatent", "ApiReferenceLink": null, @@ -453943,7 +453943,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfilePhone", "ApiReferenceLink": null, @@ -453975,7 +453975,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfilePosition", "ApiReferenceLink": null, @@ -454007,7 +454007,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileProject", "ApiReferenceLink": null, @@ -454039,7 +454039,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfilePublication", "ApiReferenceLink": null, @@ -454071,7 +454071,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileSkill", "ApiReferenceLink": null, @@ -454103,7 +454103,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileWebAccount", "ApiReferenceLink": null, @@ -454135,7 +454135,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserProfileWebsite", "ApiReferenceLink": null, @@ -454167,7 +454167,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -454182,7 +454182,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSecurity", "ApiReferenceLink": null, @@ -454197,7 +454197,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSecurityInformationProtection", "ApiReferenceLink": null, @@ -454212,7 +454212,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSecurityInformationProtectionLabelPolicySetting", "ApiReferenceLink": null, @@ -454227,7 +454227,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -454242,7 +454242,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSecurityInformationProtectionSensitivityLabelParent", "ApiReferenceLink": null, @@ -454257,7 +454257,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSetting", "ApiReferenceLink": null, @@ -454272,7 +454272,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSettingContactMergeSuggestion", "ApiReferenceLink": null, @@ -454287,7 +454287,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSettingItemInsight", "ApiReferenceLink": null, @@ -454302,7 +454302,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSettingRegionalAndLanguageSetting", "ApiReferenceLink": null, @@ -454317,7 +454317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSettingShiftPreference", "ApiReferenceLink": null, @@ -454332,7 +454332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSettingStorage", "ApiReferenceLink": null, @@ -454347,7 +454347,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSettingStorageQuota", "ApiReferenceLink": null, @@ -454362,7 +454362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSettingStorageQuotaService", "ApiReferenceLink": null, @@ -454377,7 +454377,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSettingWindows", "ApiReferenceLink": null, @@ -454392,7 +454392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -454407,7 +454407,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTeamwork", "ApiReferenceLink": null, @@ -454422,7 +454422,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -454437,7 +454437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTeamworkInstalledApp", "ApiReferenceLink": null, @@ -454549,7 +454549,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTodoList", "ApiReferenceLink": null, @@ -454589,7 +454589,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListExtension", "ApiReferenceLink": null, @@ -454604,7 +454604,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListTask", "ApiReferenceLink": null, @@ -454636,7 +454636,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListTaskAttachment", "ApiReferenceLink": null, @@ -454668,7 +454668,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListTaskAttachmentSession", "ApiReferenceLink": null, @@ -454683,7 +454683,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListTaskChecklistItem", "ApiReferenceLink": null, @@ -454715,7 +454715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListTaskExtension", "ApiReferenceLink": null, @@ -454730,7 +454730,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListTaskLinkedResource", "ApiReferenceLink": null, @@ -454762,7 +454762,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEvent", "ApiReferenceLink": null, @@ -454777,7 +454777,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventPresenter", "ApiReferenceLink": null, @@ -454792,7 +454792,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventSession", "ApiReferenceLink": null, @@ -454807,7 +454807,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -454822,7 +454822,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -454837,7 +454837,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -454852,7 +454852,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhall", "ApiReferenceLink": null, @@ -454867,7 +454867,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallPresenter", "ApiReferenceLink": null, @@ -454882,7 +454882,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallSession", "ApiReferenceLink": null, @@ -454897,7 +454897,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallSessionAttendanceReport", "ApiReferenceLink": null, @@ -454912,7 +454912,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -454927,7 +454927,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -454942,7 +454942,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinar", "ApiReferenceLink": null, @@ -454957,7 +454957,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarPresenter", "ApiReferenceLink": null, @@ -454972,7 +454972,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -454987,7 +454987,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarRegistrationByEmail", "ApiReferenceLink": null, @@ -455002,7 +455002,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarRegistrationByUserId", "ApiReferenceLink": null, @@ -455017,7 +455017,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -455032,7 +455032,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -455047,7 +455047,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -455062,7 +455062,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -455500,7 +455500,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBookingBusiness", "ApiReferenceLink": null, @@ -455515,7 +455515,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBookingBusinessAppointment", "ApiReferenceLink": null, @@ -455563,7 +455563,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -455578,7 +455578,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBookingBusinessCustomer", "ApiReferenceLink": null, @@ -455626,7 +455626,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -455666,7 +455666,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBookingBusinessService", "ApiReferenceLink": null, @@ -455698,7 +455698,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -455730,7 +455730,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgBookingCurrency", "ApiReferenceLink": null, @@ -455745,7 +455745,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-delete?view=graph-rest-1.0", @@ -455760,7 +455760,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgChatInstalledApp", "ApiReferenceLink": null, @@ -455832,7 +455832,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgChatLastMessagePreview", "ApiReferenceLink": null, @@ -455847,7 +455847,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgChatMember", "ApiReferenceLink": null, @@ -455887,7 +455887,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -455902,7 +455902,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgChatPermissionGrant", "ApiReferenceLink": null, @@ -455917,7 +455917,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgChatPinnedMessage", "ApiReferenceLink": null, @@ -455949,7 +455949,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgChatTab", "ApiReferenceLink": null, @@ -456013,7 +456013,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationCall", "ApiReferenceLink": null, @@ -456045,7 +456045,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -456077,7 +456077,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -456092,7 +456092,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationCallOperation", "ApiReferenceLink": null, @@ -456107,7 +456107,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationCallParticipant", "ApiReferenceLink": null, @@ -456139,7 +456139,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -456154,7 +456154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -456169,7 +456169,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -456184,7 +456184,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -456199,7 +456199,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -456214,7 +456214,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -456229,7 +456229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgCommunicationPresence", "ApiReferenceLink": null, @@ -456244,7 +456244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgContact", "ApiReferenceLink": null, @@ -456259,7 +456259,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgContract", "ApiReferenceLink": null, @@ -456274,7 +456274,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDataPolicyOperation", "ApiReferenceLink": null, @@ -456289,7 +456289,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-1.0", @@ -458035,7 +458035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceByDeviceId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-1.0", @@ -458050,7 +458050,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceExtension", "ApiReferenceLink": null, @@ -458065,7 +458065,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementApplePushNotificationCertificate", "ApiReferenceLink": null, @@ -458079,7 +458079,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -458094,7 +458094,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -458126,7 +458126,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementConditionalAccessSetting", "ApiReferenceLink": null, @@ -458140,7 +458140,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -458172,7 +458172,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -458204,7 +458204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -458219,7 +458219,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -458234,7 +458234,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -458249,7 +458249,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "ApiReferenceLink": null, @@ -458263,7 +458263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -458278,7 +458278,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "ApiReferenceLink": null, @@ -458293,7 +458293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -458308,7 +458308,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -458323,7 +458323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -458338,7 +458338,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -458353,7 +458353,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -458368,7 +458368,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "ApiReferenceLink": null, @@ -458383,7 +458383,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -458398,7 +458398,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -458413,7 +458413,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -458428,7 +458428,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "ApiReferenceLink": null, @@ -458442,7 +458442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -458457,7 +458457,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "ApiReferenceLink": null, @@ -458472,7 +458472,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -458487,7 +458487,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview", "ApiReferenceLink": null, @@ -458502,7 +458502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -458534,7 +458534,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -458566,7 +458566,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -458598,7 +458598,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -458613,7 +458613,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -458628,7 +458628,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -458660,7 +458660,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceCategory", "ApiReferenceLink": null, @@ -458675,7 +458675,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -458690,7 +458690,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -458705,7 +458705,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -458720,7 +458720,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-deleteuserfromsharedappledevice?view=graph-rest-1.0", @@ -458737,7 +458737,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -458752,7 +458752,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -458767,7 +458767,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -458782,7 +458782,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -458814,7 +458814,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -458846,7 +458846,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -458861,7 +458861,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -458876,7 +458876,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementPartner", "ApiReferenceLink": null, @@ -458908,7 +458908,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -458940,7 +458940,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementReport", "ApiReferenceLink": null, @@ -458954,7 +458954,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -458986,7 +458986,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -459018,7 +459018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -459050,7 +459050,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -459082,7 +459082,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -459097,7 +459097,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -459112,7 +459112,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -459127,7 +459127,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -459142,7 +459142,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -459157,7 +459157,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -459189,7 +459189,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -459221,7 +459221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -459253,7 +459253,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -459285,7 +459285,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -459317,7 +459317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -459349,7 +459349,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -459381,7 +459381,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -459413,7 +459413,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", "ApiReferenceLink": null, @@ -459427,7 +459427,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -459442,7 +459442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -459474,7 +459474,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -459489,7 +459489,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -459504,7 +459504,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -459536,7 +459536,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -459568,7 +459568,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -459600,7 +459600,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -459632,7 +459632,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -459664,7 +459664,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -459696,7 +459696,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -459728,7 +459728,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticOverview", "ApiReferenceLink": null, @@ -459742,7 +459742,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -459774,7 +459774,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "ApiReferenceLink": null, @@ -459788,7 +459788,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -459820,7 +459820,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -459852,7 +459852,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -459884,7 +459884,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -459899,7 +459899,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -459914,7 +459914,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -459929,7 +459929,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -459944,7 +459944,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -459959,7 +459959,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -459974,7 +459974,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -459989,7 +459989,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -460004,7 +460004,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -460019,7 +460019,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -460034,7 +460034,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -460066,7 +460066,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -460128,7 +460128,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -460143,7 +460143,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -460173,7 +460173,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -460188,7 +460188,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryAttributeSet", "ApiReferenceLink": null, @@ -460203,7 +460203,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -460218,7 +460218,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -460233,7 +460233,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryDeletedItem", "ApiReferenceLink": null, @@ -460248,7 +460248,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryDeviceLocalCredential", "ApiReferenceLink": null, @@ -460263,7 +460263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -460295,7 +460295,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delete?view=graph-rest-1.0", @@ -460310,7 +460310,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -460325,7 +460325,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryRole", "ApiReferenceLink": null, @@ -460340,7 +460340,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryRoleByRoleTemplateId", "ApiReferenceLink": null, @@ -460370,7 +460370,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -460385,7 +460385,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectoryRoleTemplate", "ApiReferenceLink": null, @@ -460400,7 +460400,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectorySubscription", "ApiReferenceLink": null, @@ -460415,7 +460415,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDirectorySubscriptionByCommerceSubscriptionId", "ApiReferenceLink": null, @@ -460430,7 +460430,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-delete?view=graph-rest-1.0", @@ -460445,7 +460445,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDomainFederationConfiguration", "ApiReferenceLink": null, @@ -460460,7 +460460,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -460475,7 +460475,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -460490,7 +460490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDrive", "ApiReferenceLink": null, @@ -460505,7 +460505,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItem", "ApiReferenceLink": null, @@ -460545,7 +460545,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemAnalytic", "ApiReferenceLink": null, @@ -460560,7 +460560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -460575,7 +460575,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemListItem", "ApiReferenceLink": null, @@ -460590,7 +460590,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -460605,7 +460605,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -460620,7 +460620,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemListItemField", "ApiReferenceLink": null, @@ -460635,7 +460635,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemListItemVersion", "ApiReferenceLink": null, @@ -460650,7 +460650,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -460665,7 +460665,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgDriveItemPermanent", "ApiReferenceLink": null, @@ -460680,7 +460680,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemPermission", "ApiReferenceLink": null, @@ -460720,7 +460720,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -460735,7 +460735,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemSubscription", "ApiReferenceLink": null, @@ -460750,7 +460750,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemThumbnail", "ApiReferenceLink": null, @@ -460765,7 +460765,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveItemVersion", "ApiReferenceLink": null, @@ -460780,7 +460780,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveList", "ApiReferenceLink": null, @@ -460795,7 +460795,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListColumn", "ApiReferenceLink": null, @@ -460810,7 +460810,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListContentType", "ApiReferenceLink": null, @@ -460825,7 +460825,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -460840,7 +460840,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -460855,7 +460855,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListItem", "ApiReferenceLink": null, @@ -460870,7 +460870,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -460885,7 +460885,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -460900,7 +460900,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListItemField", "ApiReferenceLink": null, @@ -460915,7 +460915,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListItemVersion", "ApiReferenceLink": null, @@ -460930,7 +460930,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListItemVersionField", "ApiReferenceLink": null, @@ -460945,7 +460945,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListOperation", "ApiReferenceLink": null, @@ -460960,7 +460960,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveListSubscription", "ApiReferenceLink": null, @@ -460975,7 +460975,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRoot", "ApiReferenceLink": null, @@ -460990,7 +460990,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootAnalytic", "ApiReferenceLink": null, @@ -461005,7 +461005,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -461020,7 +461020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootListItem", "ApiReferenceLink": null, @@ -461035,7 +461035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -461050,7 +461050,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -461065,7 +461065,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootListItemField", "ApiReferenceLink": null, @@ -461080,7 +461080,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootListItemVersion", "ApiReferenceLink": null, @@ -461095,7 +461095,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -461110,7 +461110,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgDriveRootPermanent", "ApiReferenceLink": null, @@ -461125,7 +461125,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootPermission", "ApiReferenceLink": null, @@ -461140,7 +461140,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -461155,7 +461155,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootSubscription", "ApiReferenceLink": null, @@ -461170,7 +461170,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootThumbnail", "ApiReferenceLink": null, @@ -461185,7 +461185,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgDriveRootVersion", "ApiReferenceLink": null, @@ -461200,7 +461200,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClass", "ApiReferenceLink": null, @@ -461215,7 +461215,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignment", "ApiReferenceLink": null, @@ -461247,7 +461247,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -461311,7 +461311,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentDefault", "ApiReferenceLink": null, @@ -461326,7 +461326,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -461358,7 +461358,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentRubric", "ApiReferenceLink": null, @@ -461390,7 +461390,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentRubricByRef", "ApiReferenceLink": null, @@ -461422,7 +461422,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSetting", "ApiReferenceLink": null, @@ -461437,7 +461437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -461452,7 +461452,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -461467,7 +461467,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -461482,7 +461482,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -461514,7 +461514,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -461544,7 +461544,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassModule", "ApiReferenceLink": null, @@ -461576,7 +461576,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationClassModuleResource", "ApiReferenceLink": null, @@ -461623,7 +461623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMe", "ApiReferenceLink": null, @@ -461637,7 +461637,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMeAssignment", "ApiReferenceLink": null, @@ -461667,7 +461667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -461682,7 +461682,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentRubric", "ApiReferenceLink": null, @@ -461697,7 +461697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentRubricByRef", "ApiReferenceLink": null, @@ -461712,7 +461712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -461727,7 +461727,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -461742,7 +461742,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -461757,7 +461757,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -461772,7 +461772,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationMeRubric", "ApiReferenceLink": null, @@ -461804,7 +461804,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationSchool", "ApiReferenceLink": null, @@ -461849,7 +461849,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUser", "ApiReferenceLink": null, @@ -461864,7 +461864,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUserAssignment", "ApiReferenceLink": null, @@ -461894,7 +461894,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -461909,7 +461909,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentRubric", "ApiReferenceLink": null, @@ -461924,7 +461924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentRubricByRef", "ApiReferenceLink": null, @@ -461939,7 +461939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -461954,7 +461954,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -461969,7 +461969,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -461984,7 +461984,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -461999,7 +461999,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEducationUserRubric", "ApiReferenceLink": null, @@ -462014,7 +462014,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -462029,7 +462029,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApproval", "ApiReferenceLink": null, @@ -462044,7 +462044,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "ApiReferenceLink": null, @@ -462059,7 +462059,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -462074,7 +462074,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "ApiReferenceLink": null, @@ -462089,7 +462089,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef", "ApiReferenceLink": null, @@ -462104,7 +462104,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageResourceRoleScope", "ApiReferenceLink": null, @@ -462119,7 +462119,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignment", "ApiReferenceLink": null, @@ -462134,7 +462134,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignmentPolicy", "ApiReferenceLink": null, @@ -462149,7 +462149,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -462164,7 +462164,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignmentPolicyQuestion", "ApiReferenceLink": null, @@ -462179,7 +462179,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignmentRequest", "ApiReferenceLink": null, @@ -462194,7 +462194,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalog", "ApiReferenceLink": null, @@ -462209,7 +462209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -462224,7 +462224,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResource", "ApiReferenceLink": null, @@ -462239,7 +462239,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRole", "ApiReferenceLink": null, @@ -462258,7 +462258,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRoleResource", "ApiReferenceLink": null, @@ -462275,7 +462275,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -462292,7 +462292,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -462309,7 +462309,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -462324,7 +462324,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScope", "ApiReferenceLink": null, @@ -462343,7 +462343,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScopeResource", "ApiReferenceLink": null, @@ -462360,7 +462360,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -462377,7 +462377,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -462394,7 +462394,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -462409,7 +462409,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -462454,7 +462454,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResource", "ApiReferenceLink": null, @@ -462469,7 +462469,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironment", "ApiReferenceLink": null, @@ -462484,7 +462484,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResource", "ApiReferenceLink": null, @@ -462499,7 +462499,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceRole", "ApiReferenceLink": null, @@ -462514,7 +462514,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResource", "ApiReferenceLink": null, @@ -462529,7 +462529,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", "ApiReferenceLink": null, @@ -462544,7 +462544,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -462559,7 +462559,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceScope", "ApiReferenceLink": null, @@ -462574,7 +462574,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResource", "ApiReferenceLink": null, @@ -462589,7 +462589,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", "ApiReferenceLink": null, @@ -462604,7 +462604,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -462619,7 +462619,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequest", "ApiReferenceLink": null, @@ -462634,7 +462634,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalog", "ApiReferenceLink": null, @@ -462649,7 +462649,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -462664,7 +462664,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResource", "ApiReferenceLink": null, @@ -462679,7 +462679,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRole", "ApiReferenceLink": null, @@ -462698,7 +462698,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource", "ApiReferenceLink": null, @@ -462715,7 +462715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -462732,7 +462732,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -462749,7 +462749,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -462764,7 +462764,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScope", "ApiReferenceLink": null, @@ -462783,7 +462783,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource", "ApiReferenceLink": null, @@ -462800,7 +462800,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -462817,7 +462817,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -462834,7 +462834,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -462849,7 +462849,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResource", "ApiReferenceLink": null, @@ -462864,7 +462864,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceRole", "ApiReferenceLink": null, @@ -462879,7 +462879,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceRoleResource", "ApiReferenceLink": null, @@ -462894,7 +462894,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScope", "ApiReferenceLink": null, @@ -462909,7 +462909,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -462924,7 +462924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceScope", "ApiReferenceLink": null, @@ -462939,7 +462939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceScopeResource", "ApiReferenceLink": null, @@ -462954,7 +462954,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRole", "ApiReferenceLink": null, @@ -462969,7 +462969,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -462984,7 +462984,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRole", "ApiReferenceLink": null, @@ -462999,7 +462999,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleResource", "ApiReferenceLink": null, @@ -463014,7 +463014,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleResourceScope", "ApiReferenceLink": null, @@ -463029,7 +463029,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -463044,7 +463044,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScope", "ApiReferenceLink": null, @@ -463059,7 +463059,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResource", "ApiReferenceLink": null, @@ -463074,7 +463074,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResourceRole", "ApiReferenceLink": null, @@ -463089,7 +463089,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResource", "ApiReferenceLink": null, @@ -463104,7 +463104,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -463119,7 +463119,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResourceScope", "ApiReferenceLink": null, @@ -463134,7 +463134,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRole", "ApiReferenceLink": null, @@ -463149,7 +463149,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResource", "ApiReferenceLink": null, @@ -463164,7 +463164,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceRole", "ApiReferenceLink": null, @@ -463179,7 +463179,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScope", "ApiReferenceLink": null, @@ -463194,7 +463194,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource", "ApiReferenceLink": null, @@ -463209,7 +463209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -463224,7 +463224,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceScope", "ApiReferenceLink": null, @@ -463239,7 +463239,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceScopeResource", "ApiReferenceLink": null, @@ -463254,7 +463254,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceScopeResourceRole", "ApiReferenceLink": null, @@ -463269,7 +463269,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -463284,7 +463284,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgExternalConnection", "ApiReferenceLink": null, @@ -463316,7 +463316,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgExternalConnectionGroup", "ApiReferenceLink": null, @@ -463348,7 +463348,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -463380,7 +463380,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgExternalConnectionItem", "ApiReferenceLink": null, @@ -463412,7 +463412,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -463427,7 +463427,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgExternalConnectionOperation", "ApiReferenceLink": null, @@ -463442,7 +463442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-1.0", @@ -463472,7 +463472,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -463487,7 +463487,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-1.0", @@ -463502,7 +463502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupCalendarEvent", "ApiReferenceLink": null, @@ -463534,7 +463534,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupCalendarPermission", "ApiReferenceLink": null, @@ -463549,7 +463549,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupConversation", "ApiReferenceLink": null, @@ -463581,7 +463581,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupConversationThread", "ApiReferenceLink": null, @@ -463613,7 +463613,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupConversationThreadPostAttachment", "ApiReferenceLink": null, @@ -463628,7 +463628,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -463643,7 +463643,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupConversationThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -463658,7 +463658,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -463673,7 +463673,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDrive", "ApiReferenceLink": null, @@ -463688,7 +463688,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItem", "ApiReferenceLink": null, @@ -463703,7 +463703,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemAnalytic", "ApiReferenceLink": null, @@ -463718,7 +463718,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -463733,7 +463733,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItem", "ApiReferenceLink": null, @@ -463748,7 +463748,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -463763,7 +463763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -463778,7 +463778,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemField", "ApiReferenceLink": null, @@ -463793,7 +463793,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -463808,7 +463808,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -463823,7 +463823,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgGroupDriveItemPermanent", "ApiReferenceLink": null, @@ -463838,7 +463838,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemPermission", "ApiReferenceLink": null, @@ -463853,7 +463853,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -463868,7 +463868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -463883,7 +463883,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -463898,7 +463898,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveItemVersion", "ApiReferenceLink": null, @@ -463913,7 +463913,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveList", "ApiReferenceLink": null, @@ -463928,7 +463928,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListColumn", "ApiReferenceLink": null, @@ -463943,7 +463943,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListContentType", "ApiReferenceLink": null, @@ -463958,7 +463958,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -463973,7 +463973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -463988,7 +463988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListItem", "ApiReferenceLink": null, @@ -464003,7 +464003,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -464018,7 +464018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -464033,7 +464033,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemField", "ApiReferenceLink": null, @@ -464048,7 +464048,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -464063,7 +464063,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemVersionField", "ApiReferenceLink": null, @@ -464078,7 +464078,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListOperation", "ApiReferenceLink": null, @@ -464093,7 +464093,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveListSubscription", "ApiReferenceLink": null, @@ -464108,7 +464108,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRoot", "ApiReferenceLink": null, @@ -464123,7 +464123,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootAnalytic", "ApiReferenceLink": null, @@ -464138,7 +464138,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -464153,7 +464153,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItem", "ApiReferenceLink": null, @@ -464168,7 +464168,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -464183,7 +464183,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -464198,7 +464198,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemField", "ApiReferenceLink": null, @@ -464213,7 +464213,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -464228,7 +464228,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -464243,7 +464243,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgGroupDriveRootPermanent", "ApiReferenceLink": null, @@ -464258,7 +464258,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootPermission", "ApiReferenceLink": null, @@ -464273,7 +464273,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -464288,7 +464288,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -464303,7 +464303,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -464318,7 +464318,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupDriveRootVersion", "ApiReferenceLink": null, @@ -464333,7 +464333,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupEvent", "ApiReferenceLink": null, @@ -464365,7 +464365,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupEventAttachment", "ApiReferenceLink": null, @@ -464380,7 +464380,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupEventExtension", "ApiReferenceLink": null, @@ -464395,7 +464395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupEventInstanceAttachment", "ApiReferenceLink": null, @@ -464410,7 +464410,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -464425,7 +464425,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupExtension", "ApiReferenceLink": null, @@ -464440,7 +464440,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgGroupFavorite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-removefavorite?view=graph-rest-1.0", @@ -464455,7 +464455,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgGroupFromLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-removegroup?view=graph-rest-1.0", @@ -464472,7 +464472,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-delete?view=graph-rest-1.0", @@ -464529,7 +464529,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -464544,7 +464544,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupOnenotePage", "ApiReferenceLink": null, @@ -464576,7 +464576,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupOnenoteSection", "ApiReferenceLink": null, @@ -464591,7 +464591,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -464638,7 +464638,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupPermissionGrant", "ApiReferenceLink": null, @@ -464653,7 +464653,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupPhoto", "ApiReferenceLink": null, @@ -464685,7 +464685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupPlannerPlanDetail", "ApiReferenceLink": null, @@ -464715,7 +464715,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSetting", "ApiReferenceLink": null, @@ -464749,7 +464749,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSettingTemplateGroupSettingTemplate", "ApiReferenceLink": null, @@ -464764,7 +464764,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgGroupSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-1.0", @@ -464781,7 +464781,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteAnalytic", "ApiReferenceLink": null, @@ -464796,7 +464796,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -464811,7 +464811,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -464826,7 +464826,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteColumn", "ApiReferenceLink": null, @@ -464841,7 +464841,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteContentType", "ApiReferenceLink": null, @@ -464856,7 +464856,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -464871,7 +464871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -464886,7 +464886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -464903,7 +464903,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -464920,7 +464920,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -464937,7 +464937,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteList", "ApiReferenceLink": null, @@ -464952,7 +464952,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListColumn", "ApiReferenceLink": null, @@ -464967,7 +464967,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListContentType", "ApiReferenceLink": null, @@ -464982,7 +464982,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -464997,7 +464997,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -465012,7 +465012,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListItem", "ApiReferenceLink": null, @@ -465027,7 +465027,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -465042,7 +465042,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -465057,7 +465057,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemField", "ApiReferenceLink": null, @@ -465072,7 +465072,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -465087,7 +465087,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemVersionField", "ApiReferenceLink": null, @@ -465102,7 +465102,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListOperation", "ApiReferenceLink": null, @@ -465117,7 +465117,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteListSubscription", "ApiReferenceLink": null, @@ -465132,7 +465132,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenote", "ApiReferenceLink": null, @@ -465147,7 +465147,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -465162,7 +465162,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -465177,7 +465177,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -465192,7 +465192,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -465207,7 +465207,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -465222,7 +465222,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -465237,7 +465237,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -465252,7 +465252,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -465267,7 +465267,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -465282,7 +465282,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -465297,7 +465297,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -465312,7 +465312,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -465327,7 +465327,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -465342,7 +465342,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -465357,7 +465357,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteOperation", "ApiReferenceLink": null, @@ -465372,7 +465372,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSitePage", "ApiReferenceLink": null, @@ -465387,7 +465387,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -465402,7 +465402,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -465417,7 +465417,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -465432,7 +465432,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -465447,7 +465447,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -465462,7 +465462,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -465477,7 +465477,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -465492,7 +465492,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSitePermission", "ApiReferenceLink": null, @@ -465507,7 +465507,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStore", "ApiReferenceLink": null, @@ -465524,7 +465524,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -465541,7 +465541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -465558,7 +465558,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -465579,7 +465579,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -465600,7 +465600,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -465617,7 +465617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -465634,7 +465634,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -465651,7 +465651,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -465668,7 +465668,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -465685,7 +465685,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -465702,7 +465702,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -465719,7 +465719,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -465740,7 +465740,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -465761,7 +465761,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -465778,7 +465778,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -465795,7 +465795,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -465816,7 +465816,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -465837,7 +465837,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -465854,7 +465854,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -465871,7 +465871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -465888,7 +465888,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -465905,7 +465905,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -465922,7 +465922,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -465939,7 +465939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -465956,7 +465956,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -465973,7 +465973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -465990,7 +465990,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -466007,7 +466007,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeam", "ApiReferenceLink": null, @@ -466022,7 +466022,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamChannel", "ApiReferenceLink": null, @@ -466037,7 +466037,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMember", "ApiReferenceLink": null, @@ -466052,7 +466052,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -466067,7 +466067,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -466082,7 +466082,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -466097,7 +466097,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -466112,7 +466112,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -466127,7 +466127,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelTab", "ApiReferenceLink": null, @@ -466142,7 +466142,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamInstalledApp", "ApiReferenceLink": null, @@ -466157,7 +466157,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamMember", "ApiReferenceLink": null, @@ -466172,7 +466172,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamOperation", "ApiReferenceLink": null, @@ -466187,7 +466187,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -466202,7 +466202,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannel", "ApiReferenceLink": null, @@ -466217,7 +466217,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -466232,7 +466232,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -466247,7 +466247,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -466262,7 +466262,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -466277,7 +466277,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -466292,7 +466292,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -466307,7 +466307,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -466322,7 +466322,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamSchedule", "ApiReferenceLink": null, @@ -466337,7 +466337,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -466352,7 +466352,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -466367,7 +466367,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -466382,7 +466382,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -466397,7 +466397,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleShift", "ApiReferenceLink": null, @@ -466412,7 +466412,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -466427,7 +466427,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -466442,7 +466442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -466457,7 +466457,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -466472,7 +466472,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamTag", "ApiReferenceLink": null, @@ -466487,7 +466487,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupTeamTagMember", "ApiReferenceLink": null, @@ -466502,7 +466502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupThread", "ApiReferenceLink": null, @@ -466534,7 +466534,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupThreadPostAttachment", "ApiReferenceLink": null, @@ -466549,7 +466549,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupThreadPostExtension", "ApiReferenceLink": null, @@ -466564,7 +466564,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -466579,7 +466579,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -466594,7 +466594,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityApiConnector", "ApiReferenceLink": null, @@ -466609,7 +466609,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -466624,7 +466624,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -466654,7 +466654,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -466669,7 +466669,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -466684,7 +466684,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -466699,7 +466699,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowPostAttributeCollection", "ApiReferenceLink": null, @@ -466714,7 +466714,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowPostAttributeCollectionByRef", "ApiReferenceLink": null, @@ -466729,7 +466729,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowPostFederationSignup", "ApiReferenceLink": null, @@ -466744,7 +466744,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowPostFederationSignupByRef", "ApiReferenceLink": null, @@ -466759,7 +466759,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -466774,7 +466774,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -466789,7 +466789,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -466821,7 +466821,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -466853,7 +466853,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -466868,7 +466868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -466883,7 +466883,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -466898,7 +466898,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -466913,7 +466913,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -466928,7 +466928,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -466943,7 +466943,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -466958,7 +466958,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -466973,7 +466973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -466988,7 +466988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -467003,7 +467003,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -467018,7 +467018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -467033,7 +467033,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -467048,7 +467048,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval", "ApiReferenceLink": null, @@ -467063,7 +467063,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", "ApiReferenceLink": null, @@ -467078,7 +467078,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -467093,7 +467093,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -467108,7 +467108,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItem", "ApiReferenceLink": null, @@ -467122,7 +467122,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": null, @@ -467137,7 +467137,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -467152,7 +467152,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -467167,7 +467167,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -467182,7 +467182,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccess", "ApiReferenceLink": null, @@ -467196,7 +467196,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroup", "ApiReferenceLink": null, @@ -467210,7 +467210,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -467225,7 +467225,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", "ApiReferenceLink": null, @@ -467240,7 +467240,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -467255,7 +467255,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -467270,7 +467270,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -467285,7 +467285,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -467300,7 +467300,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -467315,7 +467315,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -467330,7 +467330,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -467345,7 +467345,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -467362,7 +467362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -467377,7 +467377,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -467392,7 +467392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -467407,7 +467407,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -467422,7 +467422,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityProvider", "ApiReferenceLink": null, @@ -467437,7 +467437,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -467452,7 +467452,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -467467,7 +467467,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -467482,7 +467482,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgInvitation", "ApiReferenceLink": null, @@ -467497,7 +467497,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delete?view=graph-rest-1.0", @@ -467529,7 +467529,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgOrganization", "ApiReferenceLink": null, @@ -467544,7 +467544,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgOrganizationBranding", "ApiReferenceLink": null, @@ -467576,7 +467576,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -467608,7 +467608,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgOrganizationCertificateBasedAuthConfiguration", "ApiReferenceLink": null, @@ -467623,7 +467623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgOrganizationExtension", "ApiReferenceLink": null, @@ -467638,7 +467638,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPlace", "ApiReferenceLink": null, @@ -467653,7 +467653,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -467668,7 +467668,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPlannerBucket", "ApiReferenceLink": null, @@ -467708,7 +467708,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPlannerPlan", "ApiReferenceLink": null, @@ -467748,7 +467748,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPlannerTask", "ApiReferenceLink": null, @@ -467788,7 +467788,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPlannerTaskAssignedToTaskBoardFormat", "ApiReferenceLink": null, @@ -467803,7 +467803,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPlannerTaskBucketTaskBoardFormat", "ApiReferenceLink": null, @@ -467818,7 +467818,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPlannerTaskProgressTaskBoardFormat", "ApiReferenceLink": null, @@ -467833,7 +467833,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -467865,7 +467865,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyAdminConsentRequestPolicy", "ApiReferenceLink": null, @@ -467879,7 +467879,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -467911,7 +467911,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyAuthenticationFlowPolicy", "ApiReferenceLink": null, @@ -467925,7 +467925,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyAuthenticationMethodPolicy", "ApiReferenceLink": null, @@ -467939,7 +467939,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -467954,7 +467954,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -467986,7 +467986,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -468001,7 +468001,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyAuthorizationPolicy", "ApiReferenceLink": null, @@ -468015,7 +468015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -468047,7 +468047,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicy", "ApiReferenceLink": null, @@ -468061,7 +468061,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyDefault", "ApiReferenceLink": null, @@ -468075,7 +468075,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -468090,7 +468090,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", "ApiReferenceLink": null, @@ -468105,7 +468105,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyTemplate", "ApiReferenceLink": null, @@ -468119,7 +468119,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", "ApiReferenceLink": null, @@ -468133,7 +468133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", "ApiReferenceLink": null, @@ -468147,7 +468147,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyDefaultAppManagementPolicy", "ApiReferenceLink": null, @@ -468161,7 +468161,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -468191,7 +468191,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -468223,7 +468223,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "ApiReferenceLink": null, @@ -468237,7 +468237,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -468252,7 +468252,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -468267,7 +468267,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -468282,7 +468282,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -468297,7 +468297,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -468312,7 +468312,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -468327,7 +468327,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -468342,7 +468342,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -468374,7 +468374,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -468406,7 +468406,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintConnector", "ApiReferenceLink": null, @@ -468421,7 +468421,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintOperation", "ApiReferenceLink": null, @@ -468436,7 +468436,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintPrinter", "ApiReferenceLink": null, @@ -468451,7 +468451,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintPrinterJob", "ApiReferenceLink": null, @@ -468466,7 +468466,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -468481,7 +468481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintPrinterJobTask", "ApiReferenceLink": null, @@ -468496,7 +468496,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -468528,7 +468528,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintService", "ApiReferenceLink": null, @@ -468543,7 +468543,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintServiceEndpoint", "ApiReferenceLink": null, @@ -468558,7 +468558,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintShare", "ApiReferenceLink": null, @@ -468573,7 +468573,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintShareAllowedGroupByRef", "ApiReferenceLink": null, @@ -468590,7 +468590,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintShareAllowedUserByRef", "ApiReferenceLink": null, @@ -468607,7 +468607,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintShareJob", "ApiReferenceLink": null, @@ -468622,7 +468622,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintShareJobDocument", "ApiReferenceLink": null, @@ -468637,7 +468637,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintShareJobTask", "ApiReferenceLink": null, @@ -468652,7 +468652,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintTaskDefinition", "ApiReferenceLink": null, @@ -468667,7 +468667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -468682,7 +468682,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -468697,7 +468697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -468712,7 +468712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -468727,7 +468727,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgReportPartnerBilling", "ApiReferenceLink": null, @@ -468741,7 +468741,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -468756,7 +468756,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -468771,7 +468771,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingReconciliation", "ApiReferenceLink": null, @@ -468785,7 +468785,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingReconciliationBilled", "ApiReferenceLink": null, @@ -468799,7 +468799,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingUsage", "ApiReferenceLink": null, @@ -468813,7 +468813,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingUsageBilled", "ApiReferenceLink": null, @@ -468827,7 +468827,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingUsageUnbilled", "ApiReferenceLink": null, @@ -468841,7 +468841,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRiskDetection", "ApiReferenceLink": null, @@ -468856,7 +468856,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRiskyServicePrincipal", "ApiReferenceLink": null, @@ -468871,7 +468871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -468886,7 +468886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRiskyUser", "ApiReferenceLink": null, @@ -468901,7 +468901,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRiskyUserHistory", "ApiReferenceLink": null, @@ -468916,7 +468916,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectory", "ApiReferenceLink": null, @@ -468930,7 +468930,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -468945,7 +468945,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -468960,7 +468960,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -468975,7 +468975,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -468990,7 +468990,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -469005,7 +469005,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -469020,7 +469020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -469035,7 +469035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -469067,7 +469067,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -469082,7 +469082,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -469097,7 +469097,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -469112,7 +469112,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -469127,7 +469127,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagement", "ApiReferenceLink": null, @@ -469141,7 +469141,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -469156,7 +469156,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -469171,7 +469171,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -469203,7 +469203,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -469218,7 +469218,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -469233,7 +469233,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -469248,7 +469248,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -469263,7 +469263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -469278,7 +469278,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -469293,7 +469293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -469308,7 +469308,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -469323,7 +469323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -469338,7 +469338,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-delete?view=graph-rest-1.0", @@ -469370,7 +469370,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSearchAcronym", "ApiReferenceLink": null, @@ -469402,7 +469402,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSearchBookmark", "ApiReferenceLink": null, @@ -469434,7 +469434,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSearchQna", "ApiReferenceLink": null, @@ -469466,7 +469466,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAlertV2", "ApiReferenceLink": null, @@ -469481,7 +469481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulation", "ApiReferenceLink": null, @@ -469497,7 +469497,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -469512,7 +469512,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -469527,7 +469527,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -469542,7 +469542,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -469557,7 +469557,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -469572,7 +469572,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -469587,7 +469587,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -469602,7 +469602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -469617,7 +469617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -469632,7 +469632,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -469647,7 +469647,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -469662,7 +469662,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCase", "ApiReferenceLink": null, @@ -469676,7 +469676,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -469708,7 +469708,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -469723,7 +469723,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodianHold", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-removehold?view=graph-rest-1.0", @@ -469759,7 +469759,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -469774,7 +469774,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -469789,7 +469789,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -469804,7 +469804,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -469819,7 +469819,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-removehold?view=graph-rest-1.0", @@ -469855,7 +469855,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -469870,7 +469870,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -469885,7 +469885,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -469900,7 +469900,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -469932,7 +469932,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -469947,7 +469947,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseSetting", "ApiReferenceLink": null, @@ -469962,7 +469962,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -469994,7 +469994,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityIncident", "ApiReferenceLink": null, @@ -470009,7 +470009,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabel", "ApiReferenceLink": null, @@ -470023,7 +470023,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabelAuthority", "ApiReferenceLink": null, @@ -470038,7 +470038,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabelCategory", "ApiReferenceLink": null, @@ -470053,7 +470053,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -470068,7 +470068,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabelCitation", "ApiReferenceLink": null, @@ -470083,7 +470083,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabelDepartment", "ApiReferenceLink": null, @@ -470098,7 +470098,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -470113,7 +470113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -470128,7 +470128,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabelRetentionLabelDescriptor", "ApiReferenceLink": null, @@ -470143,7 +470143,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -470158,7 +470158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecuritySecureScore", "ApiReferenceLink": null, @@ -470173,7 +470173,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -470188,7 +470188,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -470203,7 +470203,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -470218,7 +470218,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligence", "ApiReferenceLink": null, @@ -470232,7 +470232,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -470247,7 +470247,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -470262,7 +470262,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -470277,7 +470277,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -470292,7 +470292,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -470307,7 +470307,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -470322,7 +470322,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -470337,7 +470337,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostReputation", "ApiReferenceLink": null, @@ -470352,7 +470352,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -470367,7 +470367,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -470382,7 +470382,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -470397,7 +470397,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -470412,7 +470412,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -470427,7 +470427,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -470442,7 +470442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -470457,7 +470457,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -470472,7 +470472,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -470487,7 +470487,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -470502,7 +470502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -470517,7 +470517,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityTrigger", "ApiReferenceLink": null, @@ -470531,7 +470531,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -470546,7 +470546,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityTriggerType", "ApiReferenceLink": null, @@ -470560,7 +470560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -470575,7 +470575,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -470590,7 +470590,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -470605,7 +470605,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -470620,7 +470620,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -470635,7 +470635,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -470650,7 +470650,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0", @@ -470690,7 +470690,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -470705,7 +470705,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -470720,7 +470720,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0", @@ -470791,7 +470791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -470806,7 +470806,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -470877,7 +470877,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgServicePrincipalKey", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-removekey?view=graph-rest-1.0", @@ -470959,7 +470959,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgServicePrincipalPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-removepassword?view=graph-rest-1.0", @@ -471001,7 +471001,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration", "ApiReferenceLink": null, @@ -471016,7 +471016,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -471031,7 +471031,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -471046,7 +471046,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronization", "ApiReferenceLink": null, @@ -471061,7 +471061,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -471093,7 +471093,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -471108,7 +471108,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationJobSchema", "ApiReferenceLink": null, @@ -471148,7 +471148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -471163,7 +471163,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -471178,7 +471178,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -471193,7 +471193,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -471208,7 +471208,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareList", "ApiReferenceLink": null, @@ -471223,7 +471223,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListColumn", "ApiReferenceLink": null, @@ -471238,7 +471238,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListContentType", "ApiReferenceLink": null, @@ -471253,7 +471253,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListContentTypeColumn", "ApiReferenceLink": null, @@ -471268,7 +471268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -471283,7 +471283,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListItem", "ApiReferenceLink": null, @@ -471300,7 +471300,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -471317,7 +471317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -471334,7 +471334,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListItemField", "ApiReferenceLink": null, @@ -471351,7 +471351,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListItemVersion", "ApiReferenceLink": null, @@ -471368,7 +471368,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListItemVersionField", "ApiReferenceLink": null, @@ -471385,7 +471385,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListOperation", "ApiReferenceLink": null, @@ -471400,7 +471400,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareListSubscription", "ApiReferenceLink": null, @@ -471415,7 +471415,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSharePermission", "ApiReferenceLink": null, @@ -471430,7 +471430,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": null, @@ -471445,7 +471445,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteAnalytic", "ApiReferenceLink": null, @@ -471460,7 +471460,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -471475,7 +471475,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -471490,7 +471490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteColumn", "ApiReferenceLink": null, @@ -471522,7 +471522,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteContentType", "ApiReferenceLink": null, @@ -471554,7 +471554,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteContentTypeColumn", "ApiReferenceLink": null, @@ -471586,7 +471586,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -471601,7 +471601,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -471618,7 +471618,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -471635,7 +471635,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -471652,7 +471652,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteList", "ApiReferenceLink": null, @@ -471667,7 +471667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListColumn", "ApiReferenceLink": null, @@ -471699,7 +471699,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListContentType", "ApiReferenceLink": null, @@ -471731,7 +471731,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -471763,7 +471763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -471778,7 +471778,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListItem", "ApiReferenceLink": null, @@ -471793,7 +471793,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -471841,7 +471841,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -471856,7 +471856,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListItemField", "ApiReferenceLink": null, @@ -471871,7 +471871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListItemVersion", "ApiReferenceLink": null, @@ -471886,7 +471886,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListItemVersionField", "ApiReferenceLink": null, @@ -471901,7 +471901,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListOperation", "ApiReferenceLink": null, @@ -471916,7 +471916,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteListSubscription", "ApiReferenceLink": null, @@ -471931,7 +471931,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -471946,7 +471946,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteOnenotePage", "ApiReferenceLink": null, @@ -471978,7 +471978,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteOnenoteSection", "ApiReferenceLink": null, @@ -471993,7 +471993,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -472008,7 +472008,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteOperation", "ApiReferenceLink": null, @@ -472023,7 +472023,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSitePage", "ApiReferenceLink": null, @@ -472038,7 +472038,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -472053,7 +472053,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -472068,7 +472068,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -472083,7 +472083,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -472098,7 +472098,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -472113,7 +472113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -472128,7 +472128,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -472143,7 +472143,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSitePermission", "ApiReferenceLink": null, @@ -472158,7 +472158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStore", "ApiReferenceLink": null, @@ -472175,7 +472175,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroup", "ApiReferenceLink": null, @@ -472192,7 +472192,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -472209,7 +472209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -472230,7 +472230,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -472251,7 +472251,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -472268,7 +472268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -472285,7 +472285,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -472302,7 +472302,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -472319,7 +472319,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -472336,7 +472336,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -472353,7 +472353,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSet", "ApiReferenceLink": null, @@ -472370,7 +472370,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -472391,7 +472391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -472412,7 +472412,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -472429,7 +472429,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -472446,7 +472446,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -472467,7 +472467,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -472488,7 +472488,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -472505,7 +472505,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -472522,7 +472522,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -472539,7 +472539,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -472556,7 +472556,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -472573,7 +472573,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -472590,7 +472590,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -472607,7 +472607,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -472624,7 +472624,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -472641,7 +472641,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -472658,7 +472658,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSubscribedSku", "ApiReferenceLink": null, @@ -472673,7 +472673,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-delete?view=graph-rest-1.0", @@ -472688,7 +472688,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeam", "ApiReferenceLink": null, @@ -472703,7 +472703,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamChannel", "ApiReferenceLink": null, @@ -472751,7 +472751,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgTeamChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0", @@ -472766,7 +472766,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamChannelMember", "ApiReferenceLink": null, @@ -472781,7 +472781,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -472796,7 +472796,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -472811,7 +472811,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamChannelTab", "ApiReferenceLink": null, @@ -472899,7 +472899,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamInstalledApp", "ApiReferenceLink": null, @@ -472979,7 +472979,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamMember", "ApiReferenceLink": null, @@ -472994,7 +472994,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamOperation", "ApiReferenceLink": null, @@ -473009,7 +473009,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamPermissionGrant", "ApiReferenceLink": null, @@ -473024,7 +473024,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannel", "ApiReferenceLink": null, @@ -473039,7 +473039,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgTeamPrimaryChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0", @@ -473054,7 +473054,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -473069,7 +473069,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -473084,7 +473084,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -473099,7 +473099,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -473114,7 +473114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamSchedule", "ApiReferenceLink": null, @@ -473129,7 +473129,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -473144,7 +473144,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -473176,7 +473176,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -473191,7 +473191,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -473223,7 +473223,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamScheduleShift", "ApiReferenceLink": null, @@ -473263,7 +473263,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -473278,7 +473278,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -473310,7 +473310,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -473342,7 +473342,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -473374,7 +473374,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamTag", "ApiReferenceLink": null, @@ -473406,7 +473406,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamTagMember", "ApiReferenceLink": null, @@ -473438,7 +473438,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedChat", "ApiReferenceLink": null, @@ -473453,7 +473453,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -473468,7 +473468,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -473483,7 +473483,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgTeamworkDeletedTeamChannelEmail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0", @@ -473498,7 +473498,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -473513,7 +473513,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -473528,7 +473528,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -473543,7 +473543,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -473558,7 +473558,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -473573,7 +473573,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -473588,7 +473588,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -473603,7 +473603,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkTeamAppSetting", "ApiReferenceLink": null, @@ -473617,7 +473617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -473632,7 +473632,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -473647,7 +473647,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -473662,7 +473662,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -473677,7 +473677,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -473692,7 +473692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -473707,7 +473707,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -473722,7 +473722,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -473737,7 +473737,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-user-delete?view=graph-rest-1.0", @@ -473793,7 +473793,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserActivity", "ApiReferenceLink": null, @@ -473808,7 +473808,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserActivityHistoryItem", "ApiReferenceLink": null, @@ -473823,7 +473823,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserAppRoleAssignment", "ApiReferenceLink": null, @@ -473838,7 +473838,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -473870,7 +473870,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserAuthenticationFido2Method", "ApiReferenceLink": null, @@ -473902,7 +473902,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod", "ApiReferenceLink": null, @@ -473934,7 +473934,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserAuthenticationOperation", "ApiReferenceLink": null, @@ -473949,7 +473949,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -473981,7 +473981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserAuthenticationSoftwareOathMethod", "ApiReferenceLink": null, @@ -474013,7 +474013,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserAuthenticationTemporaryAccessPassMethod", "ApiReferenceLink": null, @@ -474045,7 +474045,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserAuthenticationWindowsHelloForBusinessMethod", "ApiReferenceLink": null, @@ -474077,7 +474077,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserCalendarGroup", "ApiReferenceLink": null, @@ -474092,7 +474092,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserCalendarPermission", "ApiReferenceLink": null, @@ -474109,7 +474109,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChat", "ApiReferenceLink": null, @@ -474124,7 +474124,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatInstalledApp", "ApiReferenceLink": null, @@ -474139,7 +474139,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatLastMessagePreview", "ApiReferenceLink": null, @@ -474154,7 +474154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatMember", "ApiReferenceLink": null, @@ -474169,7 +474169,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatMessage", "ApiReferenceLink": null, @@ -474184,7 +474184,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -474199,7 +474199,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatMessageReply", "ApiReferenceLink": null, @@ -474214,7 +474214,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -474229,7 +474229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatPermissionGrant", "ApiReferenceLink": null, @@ -474244,7 +474244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatPinnedMessage", "ApiReferenceLink": null, @@ -474259,7 +474259,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserChatTab", "ApiReferenceLink": null, @@ -474274,7 +474274,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserContact", "ApiReferenceLink": null, @@ -474289,7 +474289,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserContactExtension", "ApiReferenceLink": null, @@ -474304,7 +474304,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserContactFolder", "ApiReferenceLink": null, @@ -474319,7 +474319,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -474334,7 +474334,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -474349,7 +474349,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -474364,7 +474364,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserContactFolderContact", "ApiReferenceLink": null, @@ -474379,7 +474379,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -474394,7 +474394,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -474409,7 +474409,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDrive", "ApiReferenceLink": null, @@ -474424,7 +474424,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItem", "ApiReferenceLink": null, @@ -474439,7 +474439,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemAnalytic", "ApiReferenceLink": null, @@ -474454,7 +474454,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -474469,7 +474469,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItem", "ApiReferenceLink": null, @@ -474484,7 +474484,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -474499,7 +474499,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -474514,7 +474514,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemField", "ApiReferenceLink": null, @@ -474529,7 +474529,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -474544,7 +474544,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -474559,7 +474559,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgUserDriveItemPermanent", "ApiReferenceLink": null, @@ -474574,7 +474574,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemPermission", "ApiReferenceLink": null, @@ -474589,7 +474589,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -474604,7 +474604,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemSubscription", "ApiReferenceLink": null, @@ -474619,7 +474619,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -474634,7 +474634,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveItemVersion", "ApiReferenceLink": null, @@ -474649,7 +474649,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveList", "ApiReferenceLink": null, @@ -474664,7 +474664,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListColumn", "ApiReferenceLink": null, @@ -474679,7 +474679,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListContentType", "ApiReferenceLink": null, @@ -474694,7 +474694,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -474709,7 +474709,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -474724,7 +474724,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListItem", "ApiReferenceLink": null, @@ -474739,7 +474739,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -474754,7 +474754,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -474769,7 +474769,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListItemField", "ApiReferenceLink": null, @@ -474784,7 +474784,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListItemVersion", "ApiReferenceLink": null, @@ -474799,7 +474799,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListItemVersionField", "ApiReferenceLink": null, @@ -474814,7 +474814,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListOperation", "ApiReferenceLink": null, @@ -474829,7 +474829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveListSubscription", "ApiReferenceLink": null, @@ -474844,7 +474844,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRoot", "ApiReferenceLink": null, @@ -474859,7 +474859,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootAnalytic", "ApiReferenceLink": null, @@ -474874,7 +474874,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -474889,7 +474889,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItem", "ApiReferenceLink": null, @@ -474904,7 +474904,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -474919,7 +474919,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -474934,7 +474934,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemField", "ApiReferenceLink": null, @@ -474949,7 +474949,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -474964,7 +474964,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -474979,7 +474979,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgUserDriveRootPermanent", "ApiReferenceLink": null, @@ -474994,7 +474994,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootPermission", "ApiReferenceLink": null, @@ -475009,7 +475009,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -475024,7 +475024,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootSubscription", "ApiReferenceLink": null, @@ -475039,7 +475039,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -475054,7 +475054,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserDriveRootVersion", "ApiReferenceLink": null, @@ -475069,7 +475069,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserEvent", "ApiReferenceLink": null, @@ -475084,7 +475084,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserEventAttachment", "ApiReferenceLink": null, @@ -475099,7 +475099,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserEventExtension", "ApiReferenceLink": null, @@ -475114,7 +475114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserEventInstanceAttachment", "ApiReferenceLink": null, @@ -475129,7 +475129,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserEventInstanceExtension", "ApiReferenceLink": null, @@ -475144,7 +475144,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserExtension", "ApiReferenceLink": null, @@ -475159,7 +475159,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgUserFollowedSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-1.0", @@ -475176,7 +475176,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserInferenceClassificationOverride", "ApiReferenceLink": null, @@ -475191,7 +475191,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserLicenseDetail", "ApiReferenceLink": null, @@ -475206,7 +475206,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolder", "ApiReferenceLink": null, @@ -475221,7 +475221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -475236,7 +475236,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -475251,7 +475251,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolderMessageAttachment", "ApiReferenceLink": null, @@ -475266,7 +475266,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -475281,7 +475281,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolderMessageRule", "ApiReferenceLink": null, @@ -475296,7 +475296,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolderMessage", "ApiReferenceLink": null, @@ -475311,7 +475311,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolderMessageAttachment", "ApiReferenceLink": null, @@ -475326,7 +475326,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -475341,7 +475341,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMailFolderMessageRule", "ApiReferenceLink": null, @@ -475356,7 +475356,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserManagedDevice", "ApiReferenceLink": null, @@ -475371,7 +475371,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceCategory", "ApiReferenceLink": null, @@ -475386,7 +475386,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -475401,7 +475401,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -475416,7 +475416,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -475431,7 +475431,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Remove-MgUserManagedDeviceUserFromSharedAppleDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-deleteuserfromsharedappledevice?view=graph-rest-1.0", @@ -475448,7 +475448,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -475463,7 +475463,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -475478,7 +475478,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserManagerByRef", "ApiReferenceLink": null, @@ -475510,7 +475510,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMessage", "ApiReferenceLink": null, @@ -475525,7 +475525,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMessageAttachment", "ApiReferenceLink": null, @@ -475540,7 +475540,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserMessageExtension", "ApiReferenceLink": null, @@ -475555,7 +475555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOnenoteNotebook", "ApiReferenceLink": null, @@ -475570,7 +475570,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOnenotePage", "ApiReferenceLink": null, @@ -475602,7 +475602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOnenoteSection", "ApiReferenceLink": null, @@ -475617,7 +475617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -475632,7 +475632,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOnlineMeeting", "ApiReferenceLink": null, @@ -475664,7 +475664,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -475679,7 +475679,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -475694,7 +475694,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -475709,7 +475709,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -475724,7 +475724,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserOutlookMasterCategory", "ApiReferenceLink": null, @@ -475739,7 +475739,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserPhoto", "ApiReferenceLink": null, @@ -475779,7 +475779,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserPresence", "ApiReferenceLink": null, @@ -475794,7 +475794,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -475809,7 +475809,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserSetting", "ApiReferenceLink": null, @@ -475824,7 +475824,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserSettingShiftPreference", "ApiReferenceLink": null, @@ -475839,7 +475839,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserSettingWindows", "ApiReferenceLink": null, @@ -475854,7 +475854,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -475869,7 +475869,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTeamwork", "ApiReferenceLink": null, @@ -475884,7 +475884,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -475899,7 +475899,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTeamworkInstalledApp", "ApiReferenceLink": null, @@ -476011,7 +476011,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTodoList", "ApiReferenceLink": null, @@ -476051,7 +476051,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTodoListExtension", "ApiReferenceLink": null, @@ -476066,7 +476066,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTodoListTask", "ApiReferenceLink": null, @@ -476098,7 +476098,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTodoListTaskAttachment", "ApiReferenceLink": null, @@ -476130,7 +476130,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTodoListTaskAttachmentSession", "ApiReferenceLink": null, @@ -476145,7 +476145,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTodoListTaskChecklistItem", "ApiReferenceLink": null, @@ -476177,7 +476177,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTodoListTaskExtension", "ApiReferenceLink": null, @@ -476192,7 +476192,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgUserTodoListTaskLinkedResource", "ApiReferenceLink": null, @@ -476224,7 +476224,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgVirtualEvent", "ApiReferenceLink": null, @@ -476239,7 +476239,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgVirtualEventSession", "ApiReferenceLink": null, @@ -476254,7 +476254,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -476269,7 +476269,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -476284,7 +476284,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinar", "ApiReferenceLink": null, @@ -476299,7 +476299,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -476314,7 +476314,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -476329,7 +476329,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -476344,7 +476344,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -476359,7 +476359,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Rename-MgBetaCommunicationCallScreenSharingRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-beta", @@ -476393,7 +476393,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Rename-MgBetaDeviceManagementMonitoringAlertRecordPortalNotificationAsSent", "ApiReferenceLink": null, @@ -476408,7 +476408,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Rename-MgBetaDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-beta", @@ -476425,7 +476425,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Rename-MgBetaDeviceManagementVirtualEndpointCloudPcUserAccountType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-changeuseraccounttype?view=graph-rest-beta", @@ -476442,7 +476442,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Rename-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", "ApiReferenceLink": null, @@ -476457,7 +476457,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementActionDeploymentStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Rename-MgBetaUserCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-beta", @@ -476474,7 +476474,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Rename-MgBetaUserCloudPcUserAccountType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-changeuseraccounttype?view=graph-rest-beta", @@ -476491,7 +476491,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Rename-MgCommunicationCallScreenSharingRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-1.0", @@ -476508,7 +476508,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Rename-MgDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-1.0", @@ -476525,7 +476525,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Request-MgBetaDeviceManagementAndroidForWorkSettingSignupUrl", "ApiReferenceLink": null, @@ -476540,7 +476540,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Request-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignupUrl", "ApiReferenceLink": null, @@ -476555,7 +476555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Request-MgBetaDeviceManagementComanagedDeviceRemoteAssistance", "ApiReferenceLink": null, @@ -476587,7 +476587,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Request-MgBetaDeviceManagementManagedDeviceRemoteAssistance", "ApiReferenceLink": null, @@ -476619,7 +476619,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Request-MgBetaDeviceManagementMicrosoftTunnelSiteUpgrade", "ApiReferenceLink": null, @@ -476648,7 +476648,7 @@ "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Request-MgBetaUserManagedDeviceRemoteAssistance", "ApiReferenceLink": null, @@ -476663,7 +476663,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Request-MgDeviceManagementManagedDeviceRemoteAssistance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-requestremoteassistance?view=graph-rest-1.0", @@ -476695,7 +476695,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Request-MgUserManagedDeviceRemoteAssistance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-requestremoteassistance?view=graph-rest-1.0", @@ -476710,7 +476710,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaAccessReviewDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-beta", @@ -476742,7 +476742,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaAccessReviewInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-beta", @@ -476757,7 +476757,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaComplianceEdiscoveryCaseSettingToDefault", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-casesettings-resettodefault?view=graph-rest-beta", @@ -476772,7 +476772,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaDeviceManagementComanagedDevicePasscode", "ApiReferenceLink": null, @@ -476787,7 +476787,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaDeviceManagementManagedDevicePasscode", "ApiReferenceLink": null, @@ -476802,7 +476802,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaEducationSynchronizationProfile", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-reset?view=graph-rest-beta", @@ -476834,7 +476834,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaGroupUnseenCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-resetunseencount?view=graph-rest-beta", @@ -476849,7 +476849,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta", @@ -476864,7 +476864,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta", @@ -476879,7 +476879,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaPolicyCrossTenantAccessPolicyDefaultToSystemDefault", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicyconfigurationdefault-resettosystemdefault?view=graph-rest-beta", @@ -476893,7 +476893,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronizationToDefaultSetting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/multitenantorganizationidentitysyncpolicytemplate-resettodefaultsettings?view=graph-rest-beta", @@ -476907,7 +476907,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfigurationToDefaultSetting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/multitenantorganizationpartnerconfigurationtemplate-resettodefaultsettings?view=graph-rest-beta", @@ -476921,7 +476921,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaPrintPrinterDefault", "ApiReferenceLink": null, @@ -476936,7 +476936,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycasesettings-resettodefault?view=graph-rest-beta", @@ -476951,7 +476951,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaTenantRelationshipManagedTenantOnboardingStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenant-resettenantonboardingstatus?view=graph-rest-beta", @@ -476966,7 +476966,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaUserAuthenticationMethodPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethod-resetpassword?view=graph-rest-beta", @@ -476983,7 +476983,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaUserManagedDevicePasscode", "ApiReferenceLink": null, @@ -476998,7 +476998,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgBetaUserPendingAccessReviewInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta", @@ -477013,7 +477013,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgDeviceManagementManagedDevicePasscode", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-resetpasscode?view=graph-rest-1.0", @@ -477028,7 +477028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgGroupUnseenCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-resetunseencount?view=graph-rest-1.0", @@ -477043,7 +477043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-1.0", @@ -477058,7 +477058,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicyconfigurationdefault-resettosystemdefault?view=graph-rest-1.0", @@ -477072,7 +477072,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycasesettings-resettodefault?view=graph-rest-1.0", @@ -477087,7 +477087,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgUserAuthenticationMethodPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethod-resetpassword?view=graph-rest-1.0", @@ -477104,7 +477104,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Reset-MgUserManagedDevicePasscode", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-resetpasscode?view=graph-rest-1.0", @@ -477119,7 +477119,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resize-MgBetaDeviceManagementComanagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-resizecloudpc?view=graph-rest-beta", @@ -477136,7 +477136,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resize-MgBetaDeviceManagementManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-resizecloudpc?view=graph-rest-beta", @@ -477153,7 +477153,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resize-MgBetaDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": null, @@ -477170,7 +477170,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resize-MgBetaUserCloudPc", "ApiReferenceLink": null, @@ -477187,7 +477187,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resize-MgBetaUserManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-resizecloudpc?view=graph-rest-beta", @@ -477204,7 +477204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgApplicationSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0", @@ -477221,7 +477221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgBetaApplicationSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-beta", @@ -477238,7 +477238,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgBetaDeviceManagementComanagedDeviceNow", "ApiReferenceLink": null, @@ -477253,7 +477253,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgBetaDeviceManagementManagedDeviceNow", "ApiReferenceLink": null, @@ -477268,7 +477268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgBetaDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-beta", @@ -477283,7 +477283,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgBetaServicePrincipalSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-beta", @@ -477317,7 +477317,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgBetaTeamworkDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-restart?view=graph-rest-beta", @@ -477332,7 +477332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgBetaUserCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-beta", @@ -477347,7 +477347,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgBetaUserManagedDeviceNow", "ApiReferenceLink": null, @@ -477362,7 +477362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgDeviceManagementManagedDeviceNow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-rebootnow?view=graph-rest-1.0", @@ -477377,7 +477377,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-1.0", @@ -477392,7 +477392,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgServicePrincipalSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0", @@ -477426,7 +477426,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restart-MgUserManagedDeviceNow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-rebootnow?view=graph-rest-1.0", @@ -477441,7 +477441,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDeviceManagementComanagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-restorecloudpc?view=graph-rest-beta", @@ -477458,7 +477458,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDeviceManagementComanagedDevicePasscode", "ApiReferenceLink": null, @@ -477473,7 +477473,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDeviceManagementManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-restorecloudpc?view=graph-rest-beta", @@ -477490,7 +477490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDeviceManagementManagedDevicePasscode", "ApiReferenceLink": null, @@ -477505,7 +477505,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-beta", @@ -477522,7 +477522,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDirectoryDeletedItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-beta", @@ -477537,7 +477537,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", @@ -477554,7 +477554,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveItemListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -477569,7 +477569,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveItemListItemVersion", "ApiReferenceLink": null, @@ -477584,7 +477584,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", @@ -477624,7 +477624,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -477639,7 +477639,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveListItemVersion", "ApiReferenceLink": null, @@ -477654,7 +477654,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", @@ -477671,7 +477671,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveRootListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -477686,7 +477686,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveRootListItemVersion", "ApiReferenceLink": null, @@ -477701,7 +477701,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaDriveRootVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", @@ -477716,7 +477716,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", @@ -477733,7 +477733,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -477748,7 +477748,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -477763,7 +477763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", @@ -477778,7 +477778,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -477793,7 +477793,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -477808,7 +477808,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", @@ -477825,7 +477825,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -477840,7 +477840,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -477855,7 +477855,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupDriveRootVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", @@ -477870,7 +477870,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -477885,7 +477885,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -477900,7 +477900,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-beta", @@ -477915,7 +477915,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-beta", @@ -477930,7 +477930,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaPrintPrinterFactoryDefault", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-restorefactorydefaults?view=graph-rest-beta", @@ -477962,7 +477962,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaShareListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -477979,7 +477979,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaShareListItemVersion", "ApiReferenceLink": null, @@ -477996,7 +477996,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaSiteListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -478044,7 +478044,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaSiteListItemVersion", "ApiReferenceLink": null, @@ -478084,7 +478084,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-beta", @@ -478101,7 +478101,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", @@ -478118,7 +478118,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -478133,7 +478133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -478148,7 +478148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", @@ -478163,7 +478163,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -478178,7 +478178,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveListItemVersion", "ApiReferenceLink": null, @@ -478193,7 +478193,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", @@ -478210,7 +478210,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", @@ -478225,7 +478225,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -478240,7 +478240,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserDriveRootVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", @@ -478255,7 +478255,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserManagedDeviceCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-restorecloudpc?view=graph-rest-beta", @@ -478272,7 +478272,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgBetaUserManagedDevicePasscode", "ApiReferenceLink": null, @@ -478287,7 +478287,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDeviceManagementManagedDevicePasscode", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-recoverpasscode?view=graph-rest-1.0", @@ -478302,7 +478302,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-1.0", @@ -478319,7 +478319,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDirectoryDeletedItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-1.0", @@ -478334,7 +478334,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", @@ -478351,7 +478351,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveItemListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478366,7 +478366,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveItemListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478381,7 +478381,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", @@ -478421,7 +478421,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478436,7 +478436,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478451,7 +478451,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", @@ -478468,7 +478468,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveRootListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478483,7 +478483,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveRootListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478498,7 +478498,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgDriveRootVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", @@ -478513,7 +478513,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", @@ -478530,7 +478530,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478545,7 +478545,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveItemListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478560,7 +478560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", @@ -478575,7 +478575,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478590,7 +478590,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478605,7 +478605,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", @@ -478622,7 +478622,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478637,7 +478637,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveRootListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478652,7 +478652,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupDriveRootVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", @@ -478667,7 +478667,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupSettingTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-1.0", @@ -478682,7 +478682,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478697,7 +478697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgGroupSiteListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478712,7 +478712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-1.0", @@ -478727,7 +478727,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-1.0", @@ -478742,7 +478742,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgPrintPrinterFactoryDefault", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-restorefactorydefaults?view=graph-rest-1.0", @@ -478774,7 +478774,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgShareListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478791,7 +478791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgShareListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478808,7 +478808,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgSiteListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478856,7 +478856,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgSiteListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478896,7 +478896,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", @@ -478913,7 +478913,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478928,7 +478928,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveItemListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478943,7 +478943,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", @@ -478958,7 +478958,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -478973,7 +478973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -478988,7 +478988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", @@ -479005,7 +479005,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", @@ -479020,7 +479020,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveRootListItemVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", @@ -479035,7 +479035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserDriveRootVersion", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", @@ -479050,7 +479050,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Restore-MgUserManagedDevicePasscode", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-recoverpasscode?view=graph-rest-1.0", @@ -479065,7 +479065,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgBetaEducationSynchronizationProfile", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-resume?view=graph-rest-beta", @@ -479097,7 +479097,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgBetaEntitlementManagementAccessPackageAssignmentRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-resume?view=graph-rest-beta", @@ -479114,7 +479114,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgBetaEntitlementManagementAssignmentRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-resume?view=graph-rest-beta", @@ -479131,7 +479131,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", @@ -479148,7 +479148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", @@ -479165,7 +479165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", @@ -479182,7 +479182,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", @@ -479199,7 +479199,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", @@ -479216,7 +479216,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgEntitlementManagementAssignmentRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-resume?view=graph-rest-1.0", @@ -479233,7 +479233,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", @@ -479250,7 +479250,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", @@ -479267,7 +479267,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", @@ -479284,7 +479284,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", @@ -479301,7 +479301,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", @@ -479352,7 +479352,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfileToken", "ApiReferenceLink": null, @@ -479367,7 +479367,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementAndroidForWorkEnrollmentProfileToken", "ApiReferenceLink": null, @@ -479382,7 +479382,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementComanagedDeviceAppleVppLicense", "ApiReferenceLink": null, @@ -479397,7 +479397,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementElevationRequest", "ApiReferenceLink": null, @@ -479414,7 +479414,7 @@ "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementManagedDeviceAppleVppLicense", "ApiReferenceLink": null, @@ -479429,7 +479429,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaDriveItemPermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", @@ -479471,7 +479471,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaDriveRootPermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", @@ -479488,7 +479488,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaGroupDriveItemPermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", @@ -479505,7 +479505,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaGroupDriveRootPermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", @@ -479522,7 +479522,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaGroupSitePermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", @@ -479539,7 +479539,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaSharePermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", @@ -479556,7 +479556,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaSitePermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", @@ -479573,7 +479573,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaUserDriveItemPermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", @@ -479590,7 +479590,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaUserDriveRootPermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", @@ -479607,7 +479607,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaUserManagedDeviceAppleVppLicense", "ApiReferenceLink": null, @@ -479622,7 +479622,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgBetaUserSignInSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-revokesigninsessions?view=graph-rest-beta", @@ -479662,7 +479662,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Revoke-MgUserSignInSession", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-revokesigninsessions?view=graph-rest-1.0", @@ -479702,7 +479702,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Search-MgBetaDeviceManagementImportedDeviceIdentityExistingIdentity", "ApiReferenceLink": null, @@ -480004,7 +480004,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaAccessReviewInstanceReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-beta", @@ -480019,7 +480019,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaAccessReviewReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-beta", @@ -480051,7 +480051,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaChatActivityNotification", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-beta", @@ -480085,7 +480085,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaCommunicationCallDtmfTone", "ApiReferenceLink": null, @@ -480102,7 +480102,7 @@ "OutputType": "IMicrosoftGraphSendDtmfTonesOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaCommunicationOnlineMeetingJoinWebUrlVirtualAppointmentReminderSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta", @@ -480119,7 +480119,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaCommunicationOnlineMeetingJoinWebUrlVirtualAppointmentSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta", @@ -480136,7 +480136,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentReminderSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta", @@ -480153,7 +480153,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta", @@ -480170,7 +480170,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaDeviceManagementComanagedDeviceCustomNotificationToCompanyPortal", "ApiReferenceLink": null, @@ -480204,7 +480204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaDeviceManagementCustomNotificationToCompanyPortal", "ApiReferenceLink": null, @@ -480219,7 +480219,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaDeviceManagementManagedDeviceCustomNotificationToCompanyPortal", "ApiReferenceLink": null, @@ -480253,7 +480253,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaDeviceManagementNotificationMessageTemplateTestMessage", "ApiReferenceLink": null, @@ -480268,7 +480268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaFinancialCompanySalesInvoice", "ApiReferenceLink": null, @@ -480283,7 +480283,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaFinancialCompanySalesQuote", "ApiReferenceLink": null, @@ -480298,7 +480298,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaIdentityGovernanceAccessReviewDecisionInstanceReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta", @@ -480313,7 +480313,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta", @@ -480328,7 +480328,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaTeamActivityNotification", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-sendactivitynotification?view=graph-rest-beta", @@ -480362,7 +480362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaTeamworkActivityNotificationToRecipient", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-sendactivitynotificationtorecipients?view=graph-rest-beta", @@ -480394,7 +480394,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserChatActivityNotification", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-beta", @@ -480411,7 +480411,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserMail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-sendmail?view=graph-rest-beta", @@ -480428,7 +480428,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-beta", @@ -480443,7 +480443,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-beta", @@ -480458,7 +480458,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserManagedDeviceCustomNotificationToCompanyPortal", "ApiReferenceLink": null, @@ -480475,7 +480475,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-beta", @@ -480490,7 +480490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserOnlineMeetingJoinWebUrlVirtualAppointmentReminderSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta", @@ -480507,7 +480507,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserOnlineMeetingJoinWebUrlVirtualAppointmentSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta", @@ -480524,7 +480524,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserOnlineMeetingVirtualAppointmentReminderSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta", @@ -480566,7 +480566,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserOnlineMeetingVirtualAppointmentSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta", @@ -480608,7 +480608,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserPendingAccessReviewInstanceReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta", @@ -480623,7 +480623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgBetaUserTeamworkActivityNotification", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userteamwork-sendactivitynotification?view=graph-rest-beta", @@ -480657,7 +480657,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgChatActivityNotification", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-1.0", @@ -480691,7 +480691,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgCommunicationCallDtmfTone", "ApiReferenceLink": null, @@ -480708,7 +480708,7 @@ "OutputType": "IMicrosoftGraphSendDtmfTonesOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0", @@ -480725,7 +480725,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgCommunicationOnlineMeetingVirtualAppointmentSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0", @@ -480742,7 +480742,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgDeviceManagementNotificationMessageTemplateTestMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-notification-notificationmessagetemplate-sendtestmessage?view=graph-rest-1.0", @@ -480757,7 +480757,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-1.0", @@ -480772,7 +480772,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgTeamActivityNotification", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-sendactivitynotification?view=graph-rest-1.0", @@ -480806,7 +480806,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgTeamworkActivityNotificationToRecipient", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-sendactivitynotificationtorecipients?view=graph-rest-1.0", @@ -480838,7 +480838,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgUserChatActivityNotification", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-1.0", @@ -480855,7 +480855,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgUserMail", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-sendmail?view=graph-rest-1.0", @@ -480872,7 +480872,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgUserMailFolderChildFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-1.0", @@ -480887,7 +480887,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgUserMailFolderMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-1.0", @@ -480902,7 +480902,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgUserMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-1.0", @@ -480917,7 +480917,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgUserOnlineMeetingVirtualAppointmentReminderSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0", @@ -480959,7 +480959,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgUserOnlineMeetingVirtualAppointmentSm", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0", @@ -481001,7 +481001,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Send-MgUserTeamworkActivityNotification", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userteamwork-sendactivitynotification?view=graph-rest-1.0", @@ -481035,7 +481035,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgApplicationLogo", "ApiReferenceLink": null, @@ -481067,7 +481067,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgApplicationSynchronization", "ApiReferenceLink": null, @@ -481084,7 +481084,7 @@ "OutputType": "IMicrosoftGraphSynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgApplicationSynchronizationJobBulkUploadContent", "ApiReferenceLink": null, @@ -481099,7 +481099,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgApplicationSynchronizationSecret", "ApiReferenceLink": null, @@ -481116,7 +481116,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgApplicationVerifiedPublisher", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-setverifiedpublisher?view=graph-rest-1.0", @@ -481133,7 +481133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent", "ApiReferenceLink": null, @@ -481148,7 +481148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent", "ApiReferenceLink": null, @@ -481163,7 +481163,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaApplicationConnectorGroupByRef", "ApiReferenceLink": null, @@ -481180,7 +481180,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaApplicationLogo", "ApiReferenceLink": null, @@ -481212,7 +481212,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaApplicationSynchronization", "ApiReferenceLink": null, @@ -481229,7 +481229,7 @@ "OutputType": "IMicrosoftGraphSynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaApplicationSynchronizationJobBulkUploadContent", "ApiReferenceLink": null, @@ -481244,7 +481244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaApplicationSynchronizationSecret", "ApiReferenceLink": null, @@ -481261,7 +481261,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaApplicationVerifiedPublisher", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-setverifiedpublisher?view=graph-rest-beta", @@ -481278,7 +481278,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaChatMessageHostedContent", "ApiReferenceLink": null, @@ -481293,7 +481293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaChatMessageReaction", "ApiReferenceLink": null, @@ -481310,7 +481310,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -481325,7 +481325,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaChatMessageReplyReaction", "ApiReferenceLink": null, @@ -481342,7 +481342,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingAlternativeRecording", "ApiReferenceLink": null, @@ -481357,7 +481357,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingAttendeeReport", "ApiReferenceLink": null, @@ -481372,7 +481372,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingBroadcastRecording", "ApiReferenceLink": null, @@ -481387,7 +481387,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -481402,7 +481402,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingRecordingContent", "ApiReferenceLink": null, @@ -481417,7 +481417,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingTranscriptContent", "ApiReferenceLink": null, @@ -481432,7 +481432,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent", "ApiReferenceLink": null, @@ -481447,7 +481447,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaCommunicationPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-beta", @@ -481464,7 +481464,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaCommunicationPresenceStatusMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-beta", @@ -481481,7 +481481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaCommunicationPresenceUserPreferredPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-beta", @@ -481634,7 +481634,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingAndroidDeviceOwnerFullyManagedEnrollmentState", "ApiReferenceLink": null, @@ -481649,7 +481649,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfilePriority", "ApiReferenceLink": null, @@ -481666,7 +481666,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementComanagedDeviceCloudPcReviewStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta", @@ -481683,7 +481683,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementComanagedDeviceName", "ApiReferenceLink": null, @@ -481700,7 +481700,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementCompliancePolicy", "ApiReferenceLink": null, @@ -481717,7 +481717,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementCompliancePolicyScheduledAction", "ApiReferenceLink": null, @@ -481734,7 +481734,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementConfigurationPolicy", "ApiReferenceLink": null, @@ -481751,7 +481751,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementConfigurationPolicyJust", "ApiReferenceLink": null, @@ -481768,7 +481768,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileDefaultProfile", "ApiReferenceLink": null, @@ -481783,7 +481783,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -481800,7 +481800,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceCompliancePolicyScheduledRetireState", "ApiReferenceLink": null, @@ -481815,7 +481815,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceComplianceScript", "ApiReferenceLink": null, @@ -481849,7 +481849,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -481866,7 +481866,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceCustomAttributeShellScript", "ApiReferenceLink": null, @@ -481900,7 +481900,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -481934,7 +481934,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceEnrollmentConfigurationPriority", "ApiReferenceLink": null, @@ -481968,7 +481968,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceHealthScript", "ApiReferenceLink": null, @@ -482002,7 +482002,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceShellScript", "ApiReferenceLink": null, @@ -482036,7 +482036,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementEmbeddedSimActivationCodePool", "ApiReferenceLink": null, @@ -482053,7 +482053,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementGroupPolicyConfiguration", "ApiReferenceLink": null, @@ -482070,7 +482070,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementHardwareConfiguration", "ApiReferenceLink": null, @@ -482087,7 +482087,7 @@ "OutputType": "IMicrosoftGraphHardwareConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementIntent", "ApiReferenceLink": null, @@ -482104,7 +482104,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementIntuneBrandingProfile", "ApiReferenceLink": null, @@ -482121,7 +482121,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementManagedDeviceCloudPcReviewStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta", @@ -482138,7 +482138,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementManagedDeviceName", "ApiReferenceLink": null, @@ -482155,7 +482155,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementMonitoringAlertRecordPortalNotificationAsSent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/devicemanagement-alertrecord-setportalnotificationassent?view=graph-rest-beta", @@ -482170,7 +482170,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementResourceAccessProfile", "ApiReferenceLink": null, @@ -482187,7 +482187,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementRoleScopeTag", "ApiReferenceLink": null, @@ -482221,7 +482221,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementScript", "ApiReferenceLink": null, @@ -482238,7 +482238,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-beta", @@ -482255,7 +482255,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-beta", @@ -482272,7 +482272,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", "ApiReferenceLink": null, @@ -482289,7 +482289,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceUserToDevice", "ApiReferenceLink": null, @@ -482306,7 +482306,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityResourceAccountToDevice", "ApiReferenceLink": null, @@ -482323,7 +482323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice", "ApiReferenceLink": null, @@ -482340,7 +482340,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsDriverUpdateProfile", "ApiReferenceLink": null, @@ -482357,7 +482357,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsFeatureUpdateProfile", "ApiReferenceLink": null, @@ -482374,7 +482374,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsQualityUpdateProfile", "ApiReferenceLink": null, @@ -482391,7 +482391,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveBundleContent", "ApiReferenceLink": null, @@ -482406,7 +482406,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveBundleContentStream", "ApiReferenceLink": null, @@ -482421,7 +482421,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveFollowingContent", "ApiReferenceLink": null, @@ -482436,7 +482436,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveFollowingContentStream", "ApiReferenceLink": null, @@ -482451,7 +482451,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveItemChildContent", "ApiReferenceLink": null, @@ -482466,7 +482466,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveItemChildContentStream", "ApiReferenceLink": null, @@ -482481,7 +482481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveItemContent", "ApiReferenceLink": null, @@ -482521,7 +482521,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveItemContentStream", "ApiReferenceLink": null, @@ -482561,7 +482561,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -482576,7 +482576,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveItemListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -482591,7 +482591,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -482625,7 +482625,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveItemVersionContent", "ApiReferenceLink": null, @@ -482640,7 +482640,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -482655,7 +482655,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -482670,7 +482670,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveRootChildContent", "ApiReferenceLink": null, @@ -482685,7 +482685,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveRootChildContentStream", "ApiReferenceLink": null, @@ -482700,7 +482700,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveRootContent", "ApiReferenceLink": null, @@ -482715,7 +482715,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveRootContentStream", "ApiReferenceLink": null, @@ -482730,7 +482730,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -482745,7 +482745,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveRootListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -482760,7 +482760,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -482777,7 +482777,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveRootVersionContent", "ApiReferenceLink": null, @@ -482792,7 +482792,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveSpecialContent", "ApiReferenceLink": null, @@ -482807,7 +482807,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaDriveSpecialContentStream", "ApiReferenceLink": null, @@ -482822,7 +482822,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaEducationClassAssignmentRubricByRef", "ApiReferenceLink": null, @@ -482856,7 +482856,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationClassAssignmentSubmissionUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-beta", @@ -482871,7 +482871,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationClassAssignmentUpFeedbackResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-beta", @@ -482886,7 +482886,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationClassAssignmentUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-beta", @@ -482918,7 +482918,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationClassModuleUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-setupresourcesfolder?view=graph-rest-beta", @@ -482950,7 +482950,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaEducationMeAssignmentRubricByRef", "ApiReferenceLink": null, @@ -482967,7 +482967,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationMeAssignmentSubmissionUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-beta", @@ -482982,7 +482982,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationMeAssignmentUpFeedbackResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-beta", @@ -482997,7 +482997,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationMeAssignmentUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-beta", @@ -483012,7 +483012,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaEducationUserAssignmentRubricByRef", "ApiReferenceLink": null, @@ -483029,7 +483029,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationUserAssignmentSubmissionUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-beta", @@ -483044,7 +483044,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationUserAssignmentUpFeedbackResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-beta", @@ -483059,7 +483059,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaEducationUserAssignmentUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-beta", @@ -483074,7 +483074,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -483091,7 +483091,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaExternalConnectionItem", "ApiReferenceLink": null, @@ -483125,7 +483125,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent", "ApiReferenceLink": null, @@ -483140,7 +483140,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent", "ApiReferenceLink": null, @@ -483155,7 +483155,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyCustomerPictureContent", "ApiReferenceLink": null, @@ -483170,7 +483170,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyEmployeePictureContent", "ApiReferenceLink": null, @@ -483185,7 +483185,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyInformationPicture", "ApiReferenceLink": null, @@ -483200,7 +483200,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyItemPictureContent", "ApiReferenceLink": null, @@ -483215,7 +483215,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyPictureContent", "ApiReferenceLink": null, @@ -483230,7 +483230,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent", "ApiReferenceLink": null, @@ -483247,7 +483247,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent", "ApiReferenceLink": null, @@ -483262,7 +483262,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent", "ApiReferenceLink": null, @@ -483277,7 +483277,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent", "ApiReferenceLink": null, @@ -483292,7 +483292,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent", "ApiReferenceLink": null, @@ -483307,7 +483307,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent", "ApiReferenceLink": null, @@ -483322,7 +483322,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent", "ApiReferenceLink": null, @@ -483339,7 +483339,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleOrderCustomerPictureContent", "ApiReferenceLink": null, @@ -483354,7 +483354,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleOrderLineItemPictureContent", "ApiReferenceLink": null, @@ -483371,7 +483371,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleQuoteCustomerPictureContent", "ApiReferenceLink": null, @@ -483386,7 +483386,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleQuoteLineItemPictureContent", "ApiReferenceLink": null, @@ -483403,7 +483403,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyVendorPictureContent", "ApiReferenceLink": null, @@ -483418,7 +483418,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveBundleContent", "ApiReferenceLink": null, @@ -483433,7 +483433,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveBundleContentStream", "ApiReferenceLink": null, @@ -483448,7 +483448,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveFollowingContent", "ApiReferenceLink": null, @@ -483463,7 +483463,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveFollowingContentStream", "ApiReferenceLink": null, @@ -483478,7 +483478,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemChildContent", "ApiReferenceLink": null, @@ -483493,7 +483493,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemChildContentStream", "ApiReferenceLink": null, @@ -483508,7 +483508,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemContent", "ApiReferenceLink": null, @@ -483523,7 +483523,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemContentStream", "ApiReferenceLink": null, @@ -483538,7 +483538,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -483553,7 +483553,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -483568,7 +483568,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaGroupDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -483585,7 +483585,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemVersionContent", "ApiReferenceLink": null, @@ -483600,7 +483600,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -483615,7 +483615,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -483630,7 +483630,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootChildContent", "ApiReferenceLink": null, @@ -483645,7 +483645,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootChildContentStream", "ApiReferenceLink": null, @@ -483660,7 +483660,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootContent", "ApiReferenceLink": null, @@ -483675,7 +483675,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootContentStream", "ApiReferenceLink": null, @@ -483690,7 +483690,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -483705,7 +483705,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -483720,7 +483720,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaGroupDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -483737,7 +483737,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootVersionContent", "ApiReferenceLink": null, @@ -483752,7 +483752,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveSpecialContent", "ApiReferenceLink": null, @@ -483767,7 +483767,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupDriveSpecialContentStream", "ApiReferenceLink": null, @@ -483782,7 +483782,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaGroupLicense", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-assignlicense?view=graph-rest-beta", @@ -483816,7 +483816,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupOnenotePageContent", "ApiReferenceLink": null, @@ -483831,7 +483831,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupOnenoteResourceContent", "ApiReferenceLink": null, @@ -483846,7 +483846,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -483861,7 +483861,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupPhotoContent", "ApiReferenceLink": null, @@ -483895,7 +483895,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContent", "ApiReferenceLink": null, @@ -483910,7 +483910,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContentStream", "ApiReferenceLink": null, @@ -483925,7 +483925,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteListItemActivityDriveItemContent", "ApiReferenceLink": null, @@ -483940,7 +483940,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteListItemActivityDriveItemContentStream", "ApiReferenceLink": null, @@ -483955,7 +483955,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteListItemDriveItemContent", "ApiReferenceLink": null, @@ -483970,7 +483970,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -483985,7 +483985,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -484000,7 +484000,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteNotebookSectionPageContent", "ApiReferenceLink": null, @@ -484015,7 +484015,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenotePageContent", "ApiReferenceLink": null, @@ -484030,7 +484030,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteResourceContent", "ApiReferenceLink": null, @@ -484045,7 +484045,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -484060,7 +484060,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -484075,7 +484075,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeam", "ApiReferenceLink": null, @@ -484109,7 +484109,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -484124,7 +484124,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -484139,7 +484139,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -484154,7 +484154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -484169,7 +484169,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamPhotoContent", "ApiReferenceLink": null, @@ -484184,7 +484184,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamPrimaryChannelFileFolderContent", "ApiReferenceLink": null, @@ -484199,7 +484199,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamPrimaryChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -484214,7 +484214,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -484229,7 +484229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -484244,7 +484244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaGroupTeamSchedule", "ApiReferenceLink": null, @@ -484261,7 +484261,7 @@ "OutputType": "IMicrosoftGraphSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaIdentityB2CUserFlowLanguageDefaultPageContent", "ApiReferenceLink": null, @@ -484276,7 +484276,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaIdentityB2CUserFlowLanguageOverridePageContent", "ApiReferenceLink": null, @@ -484291,7 +484291,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-setorder?view=graph-rest-beta", @@ -484308,7 +484308,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent", "ApiReferenceLink": null, @@ -484323,7 +484323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaIdentityB2XUserFlowLanguageOverridePageContent", "ApiReferenceLink": null, @@ -484338,7 +484338,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef", "ApiReferenceLink": null, @@ -484355,7 +484355,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaIdentityB2XUserFlowPostFederationSignupByRef", "ApiReferenceLink": null, @@ -484372,7 +484372,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-setorder?view=graph-rest-beta", @@ -484389,7 +484389,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -484406,7 +484406,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo", "ApiReferenceLink": null, @@ -484421,7 +484421,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingBackgroundImage", "ApiReferenceLink": null, @@ -484436,7 +484436,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingBannerLogo", "ApiReferenceLink": null, @@ -484451,7 +484451,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingCustomCss", "ApiReferenceLink": null, @@ -484466,7 +484466,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingFavicon", "ApiReferenceLink": null, @@ -484481,7 +484481,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingHeaderLogo", "ApiReferenceLink": null, @@ -484496,7 +484496,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingLocalizationBackgroundImage", "ApiReferenceLink": null, @@ -484528,7 +484528,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingLocalizationBannerLogo", "ApiReferenceLink": null, @@ -484560,7 +484560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingLocalizationCustomCss", "ApiReferenceLink": null, @@ -484592,7 +484592,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingLocalizationFavicon", "ApiReferenceLink": null, @@ -484624,7 +484624,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingLocalizationHeaderLogo", "ApiReferenceLink": null, @@ -484656,7 +484656,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingLocalizationSquareLogo", "ApiReferenceLink": null, @@ -484688,7 +484688,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingLocalizationSquareLogoDark", "ApiReferenceLink": null, @@ -484720,7 +484720,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingSquareLogo", "ApiReferenceLink": null, @@ -484735,7 +484735,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingSquareLogoDark", "ApiReferenceLink": null, @@ -484750,7 +484750,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaOrganizationMobileDeviceManagementAuthority", "ApiReferenceLink": null, @@ -484782,7 +484782,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", "ApiReferenceLink": null, @@ -484799,7 +484799,7 @@ "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaPrintPrinterJobDocumentContent", "ApiReferenceLink": null, @@ -484814,7 +484814,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaPrintPrinterShareJobDocumentContent", "ApiReferenceLink": null, @@ -484829,7 +484829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaPrintShareJobDocumentContent", "ApiReferenceLink": null, @@ -484844,7 +484844,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaSecurityAlert", "ApiReferenceLink": null, @@ -484859,7 +484859,7 @@ "OutputType": "IMicrosoftGraphSecurityAlertComment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent", "ApiReferenceLink": null, @@ -484874,7 +484874,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent", "ApiReferenceLink": null, @@ -484889,7 +484889,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaSecurityIncidentAlertComment", "ApiReferenceLink": null, @@ -484904,7 +484904,7 @@ "OutputType": "IMicrosoftGraphSecurityAlertComment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaServiceAnnouncementMessageAttachmentArchive", "ApiReferenceLink": null, @@ -484919,7 +484919,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaServiceAnnouncementMessageAttachmentContent", "ApiReferenceLink": null, @@ -484934,7 +484934,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaServicePrincipalSynchronization", "ApiReferenceLink": null, @@ -484951,7 +484951,7 @@ "OutputType": "IMicrosoftGraphSynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaServicePrincipalSynchronizationJobBulkUploadContent", "ApiReferenceLink": null, @@ -484966,7 +484966,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaServicePrincipalSynchronizationSecret", "ApiReferenceLink": null, @@ -485000,7 +485000,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaShareDriveItemContent", "ApiReferenceLink": null, @@ -485015,7 +485015,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaShareDriveItemContentStream", "ApiReferenceLink": null, @@ -485030,7 +485030,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaShareItemContent", "ApiReferenceLink": null, @@ -485045,7 +485045,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaShareItemContentStream", "ApiReferenceLink": null, @@ -485060,7 +485060,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaShareListItemDriveItemContent", "ApiReferenceLink": null, @@ -485077,7 +485077,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaShareListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -485094,7 +485094,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaShareRootContent", "ApiReferenceLink": null, @@ -485109,7 +485109,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaShareRootContentStream", "ApiReferenceLink": null, @@ -485124,7 +485124,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContent", "ApiReferenceLink": null, @@ -485139,7 +485139,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContentStream", "ApiReferenceLink": null, @@ -485154,7 +485154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSiteListItemActivityDriveItemContent", "ApiReferenceLink": null, @@ -485169,7 +485169,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSiteListItemActivityDriveItemContentStream", "ApiReferenceLink": null, @@ -485184,7 +485184,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSiteListItemDriveItemContent", "ApiReferenceLink": null, @@ -485199,7 +485199,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSiteListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -485214,7 +485214,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSiteOnenotePageContent", "ApiReferenceLink": null, @@ -485229,7 +485229,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSiteOnenoteResourceContent", "ApiReferenceLink": null, @@ -485244,7 +485244,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaSiteOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -485259,7 +485259,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -485274,7 +485274,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -485289,7 +485289,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -485304,7 +485304,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaTeamChannelMessageReaction", "ApiReferenceLink": null, @@ -485321,7 +485321,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -485336,7 +485336,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaTeamChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -485353,7 +485353,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamPhotoContent", "ApiReferenceLink": null, @@ -485368,7 +485368,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamPrimaryChannelFileFolderContent", "ApiReferenceLink": null, @@ -485383,7 +485383,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamPrimaryChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -485398,7 +485398,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -485413,7 +485413,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaTeamPrimaryChannelMessageReaction", "ApiReferenceLink": null, @@ -485430,7 +485430,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -485445,7 +485445,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaTeamPrimaryChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -485462,7 +485462,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamSchedule", "ApiReferenceLink": null, @@ -485496,7 +485496,7 @@ "OutputType": "IMicrosoftGraphSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamworkDeletedTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -485511,7 +485511,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamworkDeletedTeamChannelFileFolderContentStream", "ApiReferenceLink": null, @@ -485526,7 +485526,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -485541,7 +485541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaTeamworkDeletedTeamChannelMessageReaction", "ApiReferenceLink": null, @@ -485558,7 +485558,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -485573,7 +485573,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -485590,7 +485590,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaTenantRelationshipManagedTenantTag", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenanttag-assigntag?view=graph-rest-beta", @@ -485607,7 +485607,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTenantRelationshipMultiTenantOrganization", "ApiReferenceLink": null, @@ -485622,7 +485622,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaTrustFrameworkPolicyContent", "ApiReferenceLink": null, @@ -485637,7 +485637,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -485652,7 +485652,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserChatMessageReaction", "ApiReferenceLink": null, @@ -485686,7 +485686,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -485701,7 +485701,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserChatMessageReplyReaction", "ApiReferenceLink": null, @@ -485718,7 +485718,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserContactFolderChildFolderContactPhotoContent", "ApiReferenceLink": null, @@ -485733,7 +485733,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserContactFolderContactPhotoContent", "ApiReferenceLink": null, @@ -485748,7 +485748,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserContactPhotoContent", "ApiReferenceLink": null, @@ -485763,7 +485763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -485780,7 +485780,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserDeviceEnrollmentConfigurationPriority", "ApiReferenceLink": null, @@ -485797,7 +485797,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveBundleContent", "ApiReferenceLink": null, @@ -485812,7 +485812,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveBundleContentStream", "ApiReferenceLink": null, @@ -485827,7 +485827,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveFollowingContent", "ApiReferenceLink": null, @@ -485842,7 +485842,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveFollowingContentStream", "ApiReferenceLink": null, @@ -485857,7 +485857,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveItemChildContent", "ApiReferenceLink": null, @@ -485872,7 +485872,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveItemChildContentStream", "ApiReferenceLink": null, @@ -485887,7 +485887,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveItemContent", "ApiReferenceLink": null, @@ -485902,7 +485902,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveItemContentStream", "ApiReferenceLink": null, @@ -485917,7 +485917,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -485932,7 +485932,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveItemListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -485947,7 +485947,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -485964,7 +485964,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveItemVersionContent", "ApiReferenceLink": null, @@ -485979,7 +485979,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -485994,7 +485994,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -486009,7 +486009,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveRootChildContent", "ApiReferenceLink": null, @@ -486024,7 +486024,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveRootChildContentStream", "ApiReferenceLink": null, @@ -486039,7 +486039,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveRootContent", "ApiReferenceLink": null, @@ -486054,7 +486054,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveRootContentStream", "ApiReferenceLink": null, @@ -486069,7 +486069,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -486084,7 +486084,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveRootListItemDriveItemContentStream", "ApiReferenceLink": null, @@ -486099,7 +486099,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -486116,7 +486116,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveRootVersionContent", "ApiReferenceLink": null, @@ -486131,7 +486131,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveSpecialContent", "ApiReferenceLink": null, @@ -486146,7 +486146,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserDriveSpecialContentStream", "ApiReferenceLink": null, @@ -486161,7 +486161,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserLicense", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-assignlicense?view=graph-rest-beta", @@ -486195,7 +486195,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserMailFolderChildFolderMessageContent", "ApiReferenceLink": null, @@ -486210,7 +486210,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserMailFolderMessageContent", "ApiReferenceLink": null, @@ -486225,7 +486225,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserManagedDeviceCloudPcReviewStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta", @@ -486242,7 +486242,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserManagedDeviceName", "ApiReferenceLink": null, @@ -486259,7 +486259,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserManagerByRef", "ApiReferenceLink": null, @@ -486293,7 +486293,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserMessageContent", "ApiReferenceLink": null, @@ -486308,7 +486308,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnenotePageContent", "ApiReferenceLink": null, @@ -486323,7 +486323,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnenoteResourceContent", "ApiReferenceLink": null, @@ -486338,7 +486338,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -486353,7 +486353,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingAlternativeRecording", "ApiReferenceLink": null, @@ -486368,7 +486368,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingAttendeeReport", "ApiReferenceLink": null, @@ -486383,7 +486383,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingBroadcastRecording", "ApiReferenceLink": null, @@ -486398,7 +486398,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -486413,7 +486413,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingRecordingContent", "ApiReferenceLink": null, @@ -486428,7 +486428,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingTranscriptContent", "ApiReferenceLink": null, @@ -486443,7 +486443,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingTranscriptMetadataContent", "ApiReferenceLink": null, @@ -486458,7 +486458,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserPhotoContent", "ApiReferenceLink": null, @@ -486500,7 +486500,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-beta", @@ -486534,7 +486534,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserPresenceStatusMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-beta", @@ -486568,7 +486568,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgBetaUserPresenceUserPreferredPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-beta", @@ -486602,7 +486602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserTodoListTaskAttachmentContent", "ApiReferenceLink": null, @@ -486617,7 +486617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgBetaUserTodoListTaskAttachmentSessionContent", "ApiReferenceLink": null, @@ -486632,7 +486632,7 @@ "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgChatMessageHostedContent", "ApiReferenceLink": null, @@ -486647,7 +486647,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgChatMessageReaction", "ApiReferenceLink": null, @@ -486664,7 +486664,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -486679,7 +486679,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgChatMessageReplyReaction", "ApiReferenceLink": null, @@ -486696,7 +486696,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgCommunicationOnlineMeetingAttendeeReport", "ApiReferenceLink": null, @@ -486711,7 +486711,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgCommunicationOnlineMeetingRecordingContent", "ApiReferenceLink": null, @@ -486726,7 +486726,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgCommunicationOnlineMeetingTranscriptContent", "ApiReferenceLink": null, @@ -486741,7 +486741,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgCommunicationOnlineMeetingTranscriptMetadataContent", "ApiReferenceLink": null, @@ -486756,7 +486756,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgCommunicationPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0", @@ -486773,7 +486773,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgCommunicationPresenceStatusMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0", @@ -486790,7 +486790,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgCommunicationPresenceUserPreferredPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0", @@ -486875,7 +486875,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-devicecompliancepolicy-assign?view=graph-rest-1.0", @@ -486892,7 +486892,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgDeviceManagementDeviceConfiguration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-deviceconfiguration-assign?view=graph-rest-1.0", @@ -486909,7 +486909,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentconfiguration-assign?view=graph-rest-1.0", @@ -486943,7 +486943,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentconfiguration-setpriority?view=graph-rest-1.0", @@ -486977,7 +486977,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-1.0", @@ -486994,7 +486994,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-1.0", @@ -487011,7 +487011,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-windowsautopilotdeviceidentity-assignusertodevice?view=graph-rest-1.0", @@ -487028,7 +487028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveBundleContent", "ApiReferenceLink": null, @@ -487043,7 +487043,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveFollowingContent", "ApiReferenceLink": null, @@ -487058,7 +487058,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveItemChildContent", "ApiReferenceLink": null, @@ -487073,7 +487073,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveItemContent", "ApiReferenceLink": null, @@ -487113,7 +487113,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -487128,7 +487128,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -487162,7 +487162,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveItemVersionContent", "ApiReferenceLink": null, @@ -487177,7 +487177,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -487192,7 +487192,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveRootChildContent", "ApiReferenceLink": null, @@ -487207,7 +487207,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveRootContent", "ApiReferenceLink": null, @@ -487222,7 +487222,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -487237,7 +487237,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -487254,7 +487254,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveRootVersionContent", "ApiReferenceLink": null, @@ -487269,7 +487269,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgDriveSpecialContent", "ApiReferenceLink": null, @@ -487284,7 +487284,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgEducationClassAssignmentRubricByRef", "ApiReferenceLink": null, @@ -487318,7 +487318,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationClassAssignmentSubmissionUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-1.0", @@ -487333,7 +487333,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationClassAssignmentUpFeedbackResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-1.0", @@ -487348,7 +487348,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationClassAssignmentUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-1.0", @@ -487380,7 +487380,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationClassModuleUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-setupresourcesfolder?view=graph-rest-1.0", @@ -487412,7 +487412,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgEducationMeAssignmentRubricByRef", "ApiReferenceLink": null, @@ -487429,7 +487429,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationMeAssignmentSubmissionUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-1.0", @@ -487444,7 +487444,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationMeAssignmentUpFeedbackResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-1.0", @@ -487459,7 +487459,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationMeAssignmentUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-1.0", @@ -487474,7 +487474,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgEducationUserAssignmentRubricByRef", "ApiReferenceLink": null, @@ -487491,7 +487491,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationUserAssignmentSubmissionUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-1.0", @@ -487506,7 +487506,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationUserAssignmentUpFeedbackResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-1.0", @@ -487521,7 +487521,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgEducationUserAssignmentUpResourceFolder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-1.0", @@ -487536,7 +487536,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgEntitlementManagementAssignmentPolicy", "ApiReferenceLink": null, @@ -487553,7 +487553,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgExternalConnectionItem", "ApiReferenceLink": null, @@ -487587,7 +487587,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveBundleContent", "ApiReferenceLink": null, @@ -487602,7 +487602,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveFollowingContent", "ApiReferenceLink": null, @@ -487617,7 +487617,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveItemChildContent", "ApiReferenceLink": null, @@ -487632,7 +487632,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveItemContent", "ApiReferenceLink": null, @@ -487647,7 +487647,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -487662,7 +487662,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgGroupDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -487679,7 +487679,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveItemVersionContent", "ApiReferenceLink": null, @@ -487694,7 +487694,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -487709,7 +487709,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveRootChildContent", "ApiReferenceLink": null, @@ -487724,7 +487724,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveRootContent", "ApiReferenceLink": null, @@ -487739,7 +487739,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -487754,7 +487754,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgGroupDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -487771,7 +487771,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveRootVersionContent", "ApiReferenceLink": null, @@ -487786,7 +487786,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupDriveSpecialContent", "ApiReferenceLink": null, @@ -487801,7 +487801,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgGroupLicense", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-assignlicense?view=graph-rest-1.0", @@ -487835,7 +487835,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupOnenotePageContent", "ApiReferenceLink": null, @@ -487850,7 +487850,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupOnenoteResourceContent", "ApiReferenceLink": null, @@ -487865,7 +487865,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -487880,7 +487880,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupPhotoContent", "ApiReferenceLink": null, @@ -487914,7 +487914,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent", "ApiReferenceLink": null, @@ -487929,7 +487929,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupSiteListItemDriveItemContent", "ApiReferenceLink": null, @@ -487944,7 +487944,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -487959,7 +487959,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteNotebookSectionPageContent", "ApiReferenceLink": null, @@ -487974,7 +487974,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupSiteOnenotePageContent", "ApiReferenceLink": null, @@ -487989,7 +487989,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteResourceContent", "ApiReferenceLink": null, @@ -488004,7 +488004,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -488019,7 +488019,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -488034,7 +488034,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupTeam", "ApiReferenceLink": null, @@ -488068,7 +488068,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -488083,7 +488083,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -488098,7 +488098,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -488113,7 +488113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupTeamPhotoContent", "ApiReferenceLink": null, @@ -488128,7 +488128,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupTeamPrimaryChannelFileFolderContent", "ApiReferenceLink": null, @@ -488143,7 +488143,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -488158,7 +488158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -488173,7 +488173,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgGroupTeamSchedule", "ApiReferenceLink": null, @@ -488190,7 +488190,7 @@ "OutputType": "IMicrosoftGraphSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgIdentityB2XUserFlowLanguageDefaultPageContent", "ApiReferenceLink": null, @@ -488205,7 +488205,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgIdentityB2XUserFlowLanguageOverridePageContent", "ApiReferenceLink": null, @@ -488220,7 +488220,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgIdentityB2XUserFlowPostAttributeCollectionByRef", "ApiReferenceLink": null, @@ -488237,7 +488237,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgIdentityB2XUserFlowPostFederationSignupByRef", "ApiReferenceLink": null, @@ -488254,7 +488254,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-setorder?view=graph-rest-1.0", @@ -488271,7 +488271,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -488288,7 +488288,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingBackgroundImage", "ApiReferenceLink": null, @@ -488303,7 +488303,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingBannerLogo", "ApiReferenceLink": null, @@ -488318,7 +488318,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingCustomCss", "ApiReferenceLink": null, @@ -488333,7 +488333,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingFavicon", "ApiReferenceLink": null, @@ -488348,7 +488348,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingHeaderLogo", "ApiReferenceLink": null, @@ -488363,7 +488363,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingLocalizationBackgroundImage", "ApiReferenceLink": null, @@ -488395,7 +488395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingLocalizationBannerLogo", "ApiReferenceLink": null, @@ -488427,7 +488427,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingLocalizationCustomCss", "ApiReferenceLink": null, @@ -488459,7 +488459,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingLocalizationFavicon", "ApiReferenceLink": null, @@ -488491,7 +488491,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingLocalizationHeaderLogo", "ApiReferenceLink": null, @@ -488523,7 +488523,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingLocalizationSquareLogo", "ApiReferenceLink": null, @@ -488555,7 +488555,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingLocalizationSquareLogoDark", "ApiReferenceLink": null, @@ -488587,7 +488587,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingSquareLogo", "ApiReferenceLink": null, @@ -488602,7 +488602,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgOrganizationBrandingSquareLogoDark", "ApiReferenceLink": null, @@ -488617,7 +488617,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgOrganizationMobileDeviceManagementAuthority", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-setmobiledevicemanagementauthority?view=graph-rest-1.0", @@ -488649,7 +488649,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", "ApiReferenceLink": null, @@ -488666,7 +488666,7 @@ "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgPrintPrinterJobDocumentContent", "ApiReferenceLink": null, @@ -488681,7 +488681,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgPrintShareJobDocumentContent", "ApiReferenceLink": null, @@ -488696,7 +488696,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgSecurityAlert", "ApiReferenceLink": null, @@ -488711,7 +488711,7 @@ "OutputType": "IMicrosoftGraphSecurityAlertComment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgSecurityIncidentAlertComment", "ApiReferenceLink": null, @@ -488726,7 +488726,7 @@ "OutputType": "IMicrosoftGraphSecurityAlertComment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgServiceAnnouncementMessageAttachmentArchive", "ApiReferenceLink": null, @@ -488741,7 +488741,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgServiceAnnouncementMessageAttachmentContent", "ApiReferenceLink": null, @@ -488756,7 +488756,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgServicePrincipalSynchronization", "ApiReferenceLink": null, @@ -488773,7 +488773,7 @@ "OutputType": "IMicrosoftGraphSynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgServicePrincipalSynchronizationJobBulkUploadContent", "ApiReferenceLink": null, @@ -488788,7 +488788,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgServicePrincipalSynchronizationSecret", "ApiReferenceLink": null, @@ -488822,7 +488822,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgShareDriveItemContent", "ApiReferenceLink": null, @@ -488837,7 +488837,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgShareItemContent", "ApiReferenceLink": null, @@ -488852,7 +488852,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgShareListItemDriveItemContent", "ApiReferenceLink": null, @@ -488869,7 +488869,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgShareRootContent", "ApiReferenceLink": null, @@ -488884,7 +488884,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent", "ApiReferenceLink": null, @@ -488899,7 +488899,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgSiteListItemDriveItemContent", "ApiReferenceLink": null, @@ -488914,7 +488914,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgSiteOnenotePageContent", "ApiReferenceLink": null, @@ -488929,7 +488929,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgSiteOnenoteResourceContent", "ApiReferenceLink": null, @@ -488944,7 +488944,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgSiteOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -488959,7 +488959,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -488974,7 +488974,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -488989,7 +488989,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgTeamChannelMessageReaction", "ApiReferenceLink": null, @@ -489006,7 +489006,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -489021,7 +489021,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgTeamChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -489038,7 +489038,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamPhotoContent", "ApiReferenceLink": null, @@ -489053,7 +489053,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamPrimaryChannelFileFolderContent", "ApiReferenceLink": null, @@ -489068,7 +489068,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -489083,7 +489083,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgTeamPrimaryChannelMessageReaction", "ApiReferenceLink": null, @@ -489100,7 +489100,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -489115,7 +489115,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgTeamPrimaryChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -489132,7 +489132,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamSchedule", "ApiReferenceLink": null, @@ -489166,7 +489166,7 @@ "OutputType": "IMicrosoftGraphSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamworkDeletedTeamChannelFileFolderContent", "ApiReferenceLink": null, @@ -489181,7 +489181,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -489196,7 +489196,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgTeamworkDeletedTeamChannelMessageReaction", "ApiReferenceLink": null, @@ -489213,7 +489213,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -489228,7 +489228,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgTeamworkDeletedTeamChannelMessageReplyReaction", "ApiReferenceLink": null, @@ -489245,7 +489245,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgTenantRelationshipMultiTenantOrganization", "ApiReferenceLink": null, @@ -489260,7 +489260,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -489275,7 +489275,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgUserChatMessageReaction", "ApiReferenceLink": null, @@ -489309,7 +489309,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -489324,7 +489324,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgUserChatMessageReplyReaction", "ApiReferenceLink": null, @@ -489341,7 +489341,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserContactFolderChildFolderContactPhotoContent", "ApiReferenceLink": null, @@ -489356,7 +489356,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserContactFolderContactPhotoContent", "ApiReferenceLink": null, @@ -489371,7 +489371,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserContactPhotoContent", "ApiReferenceLink": null, @@ -489386,7 +489386,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveBundleContent", "ApiReferenceLink": null, @@ -489401,7 +489401,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveFollowingContent", "ApiReferenceLink": null, @@ -489416,7 +489416,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveItemChildContent", "ApiReferenceLink": null, @@ -489431,7 +489431,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveItemContent", "ApiReferenceLink": null, @@ -489446,7 +489446,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveItemListItemDriveItemContent", "ApiReferenceLink": null, @@ -489461,7 +489461,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgUserDriveItemSensitivityLabel", "ApiReferenceLink": null, @@ -489478,7 +489478,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveItemVersionContent", "ApiReferenceLink": null, @@ -489493,7 +489493,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveListItemDriveItemContent", "ApiReferenceLink": null, @@ -489508,7 +489508,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveRootChildContent", "ApiReferenceLink": null, @@ -489523,7 +489523,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveRootContent", "ApiReferenceLink": null, @@ -489538,7 +489538,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveRootListItemDriveItemContent", "ApiReferenceLink": null, @@ -489553,7 +489553,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgUserDriveRootSensitivityLabel", "ApiReferenceLink": null, @@ -489570,7 +489570,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveRootVersionContent", "ApiReferenceLink": null, @@ -489585,7 +489585,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserDriveSpecialContent", "ApiReferenceLink": null, @@ -489600,7 +489600,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgUserLicense", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-assignlicense?view=graph-rest-1.0", @@ -489634,7 +489634,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserMailFolderChildFolderMessageContent", "ApiReferenceLink": null, @@ -489649,7 +489649,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserMailFolderMessageContent", "ApiReferenceLink": null, @@ -489664,7 +489664,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserManagerByRef", "ApiReferenceLink": null, @@ -489698,7 +489698,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserMessageContent", "ApiReferenceLink": null, @@ -489713,7 +489713,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserOnenotePageContent", "ApiReferenceLink": null, @@ -489728,7 +489728,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserOnenoteResourceContent", "ApiReferenceLink": null, @@ -489743,7 +489743,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -489758,7 +489758,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserOnlineMeetingAttendeeReport", "ApiReferenceLink": null, @@ -489773,7 +489773,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserOnlineMeetingRecordingContent", "ApiReferenceLink": null, @@ -489788,7 +489788,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserOnlineMeetingTranscriptContent", "ApiReferenceLink": null, @@ -489803,7 +489803,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserOnlineMeetingTranscriptMetadataContent", "ApiReferenceLink": null, @@ -489818,7 +489818,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserPhotoContent", "ApiReferenceLink": null, @@ -489860,7 +489860,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgUserPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0", @@ -489894,7 +489894,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgUserPresenceStatusMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0", @@ -489928,7 +489928,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Set-MgUserPresenceUserPreferredPresence", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0", @@ -489962,7 +489962,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserTodoListTaskAttachmentContent", "ApiReferenceLink": null, @@ -489977,7 +489977,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PUT", "Command": "Set-MgUserTodoListTaskAttachmentSessionContent", "ApiReferenceLink": null, @@ -489992,7 +489992,7 @@ "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Skip-MgBetaDeviceManagementComanagedDeviceActivationLock", "ApiReferenceLink": null, @@ -490007,7 +490007,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Skip-MgBetaDeviceManagementManagedDeviceActivationLock", "ApiReferenceLink": null, @@ -490022,7 +490022,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Skip-MgBetaUserManagedDeviceActivationLock", "ApiReferenceLink": null, @@ -490037,7 +490037,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Skip-MgDeviceManagementManagedDeviceActivationLock", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-bypassactivationlock?view=graph-rest-1.0", @@ -490052,7 +490052,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Skip-MgUserManagedDeviceActivationLock", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-bypassactivationlock?view=graph-rest-1.0", @@ -490067,7 +490067,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgApplicationSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0", @@ -490082,7 +490082,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaApplicationSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-beta", @@ -490097,7 +490097,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaCommunicationCallParticipantHoldMusic", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-beta", @@ -490131,7 +490131,7 @@ "OutputType": "IMicrosoftGraphStartHoldMusicOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaDeviceManagementComanagedDeviceConfigurationManagerAction", "ApiReferenceLink": null, @@ -490148,7 +490148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaDeviceManagementManagedDeviceConfigurationManagerAction", "ApiReferenceLink": null, @@ -490165,7 +490165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweron?view=graph-rest-beta", @@ -490182,7 +490182,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-beta", @@ -490197,7 +490197,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaEducationSynchronizationProfile", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-start?view=graph-rest-beta", @@ -490229,7 +490229,7 @@ "OutputType": "IMicrosoftGraphEducationFileSynchronizationVerificationMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaPrintPrinterJob", "ApiReferenceLink": null, @@ -490244,7 +490244,7 @@ "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaPrintPrinterJobPrintJob", "ApiReferenceLink": null, @@ -490259,7 +490259,7 @@ "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaPrintPrinterShareJob", "ApiReferenceLink": null, @@ -490274,7 +490274,7 @@ "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaPrintPrinterShareJobPrintJob", "ApiReferenceLink": null, @@ -490289,7 +490289,7 @@ "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaPrintShareJob", "ApiReferenceLink": null, @@ -490345,7 +490345,7 @@ "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaPrintShareJobPrintJob", "ApiReferenceLink": null, @@ -490392,7 +490392,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaSecurityHuntingQuery", "ApiReferenceLink": null, @@ -490407,7 +490407,7 @@ "OutputType": "IMicrosoftGraphSecurityHuntingQueryResults" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaServicePrincipalSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-beta", @@ -490439,7 +490439,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaTeamScheduleTimeCardBreak", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-startbreak?view=graph-rest-beta", @@ -490456,7 +490456,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaTeamworkDeviceDiagnostic", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-rundiagnostics?view=graph-rest-beta", @@ -490471,7 +490471,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaUserCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweron?view=graph-rest-beta", @@ -490488,7 +490488,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgBetaUserManagedDeviceConfigurationManagerAction", "ApiReferenceLink": null, @@ -490505,7 +490505,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgCommunicationCallParticipantHoldMusic", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-1.0", @@ -490539,7 +490539,7 @@ "OutputType": "IMicrosoftGraphStartHoldMusicOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0", @@ -490554,7 +490554,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgPrintPrinterJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-start?view=graph-rest-1.0", @@ -490569,7 +490569,7 @@ "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgPrintShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-start?view=graph-rest-1.0", @@ -490625,7 +490625,7 @@ "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgSecurityHuntingQuery", "ApiReferenceLink": null, @@ -490640,7 +490640,7 @@ "OutputType": "IMicrosoftGraphSecurityHuntingQueryResults" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Start-MgServicePrincipalSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0", @@ -490672,7 +490672,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaAccessReview", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-stop?view=graph-rest-beta", @@ -490704,7 +490704,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaAccessReviewInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-stop?view=graph-rest-beta", @@ -490719,7 +490719,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaBookingBusinessAppointment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta", @@ -490761,7 +490761,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaBookingBusinessCalendarView", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta", @@ -490778,7 +490778,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaCommunicationCallMediaProcessing", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-beta", @@ -490812,7 +490812,7 @@ "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaCommunicationCallParticipantHoldMusic", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-beta", @@ -490846,7 +490846,7 @@ "OutputType": "IMicrosoftGraphStopHoldMusicOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaDeviceManagementOperationApprovalRequestApproval", "ApiReferenceLink": null, @@ -490880,7 +490880,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaDeviceManagementOperationApprovalRequestMyRequest", "ApiReferenceLink": null, @@ -490912,7 +490912,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweroff?view=graph-rest-beta", @@ -490929,7 +490929,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaDeviceManagementVirtualEndpointCloudPcGracePeriod", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-beta", @@ -490944,7 +490944,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaDeviceManagementZebraFotaDeployment", "ApiReferenceLink": null, @@ -490959,7 +490959,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaEntitlementManagementAccessPackageAssignmentRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-cancel?view=graph-rest-beta", @@ -490974,7 +490974,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaEntitlementManagementAssignmentRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-cancel?view=graph-rest-beta", @@ -490989,7 +490989,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaFinancialCompanySaleInvoiceAndSend", "ApiReferenceLink": null, @@ -491004,7 +491004,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaFinancialCompanySalesInvoice", "ApiReferenceLink": null, @@ -491019,7 +491019,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaGroupCalendarEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta", @@ -491036,7 +491036,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaGroupEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta", @@ -491053,7 +491053,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDecisionInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta", @@ -491068,7 +491068,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDecisionInstanceApplyDecision", "ApiReferenceLink": null, @@ -491083,7 +491083,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta", @@ -491098,7 +491098,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -491113,7 +491113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta", @@ -491128,7 +491128,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceApplyDecision", "ApiReferenceLink": null, @@ -491143,7 +491143,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta", @@ -491158,7 +491158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-cancel?view=graph-rest-beta", @@ -491173,7 +491173,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-cancel?view=graph-rest-beta", @@ -491188,7 +491188,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaPrintPrinterJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-beta", @@ -491236,7 +491236,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaPrintPrinterJobPrintJob", "ApiReferenceLink": null, @@ -491251,7 +491251,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaPrintPrinterShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-beta", @@ -491266,7 +491266,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaPrintPrinterShareJobPrintJob", "ApiReferenceLink": null, @@ -491281,7 +491281,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaPrintShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-beta", @@ -491296,7 +491296,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaPrintShareJobPrintJob", "ApiReferenceLink": null, @@ -491311,7 +491311,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", "ApiReferenceLink": null, @@ -491326,7 +491326,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaPrivilegedAccessRoleAssignmentRequest", "ApiReferenceLink": null, @@ -491341,7 +491341,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaPrivilegedRoleAssignmentRequest", "ApiReferenceLink": null, @@ -491356,7 +491356,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-beta", @@ -491388,7 +491388,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-beta", @@ -491420,7 +491420,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-beta", @@ -491435,7 +491435,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-beta", @@ -491450,7 +491450,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-beta", @@ -491465,7 +491465,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-beta", @@ -491480,7 +491480,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaSecurityAction", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityaction-cancelsecurityaction?view=graph-rest-beta", @@ -491495,7 +491495,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaTeamScheduleTimeCardBreak", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-endbreak?view=graph-rest-beta", @@ -491512,7 +491512,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaUserCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweroff?view=graph-rest-beta", @@ -491529,7 +491529,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaUserCloudPcGracePeriod", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-beta", @@ -491544,7 +491544,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaUserEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta", @@ -491561,7 +491561,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaUserEventInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta", @@ -491578,7 +491578,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaUserPendingAccessReviewInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta", @@ -491593,7 +491593,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaUserPendingAccessReviewInstanceApplyDecision", "ApiReferenceLink": null, @@ -491608,7 +491608,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaUserPendingAccessReviewInstanceStage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta", @@ -491623,7 +491623,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBetaVirtualEvent", "ApiReferenceLink": null, @@ -491638,7 +491638,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBookingBusinessAppointment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0", @@ -491680,7 +491680,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgBookingBusinessCalendarView", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0", @@ -491697,7 +491697,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgCommunicationCallMediaProcessing", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-1.0", @@ -491731,7 +491731,7 @@ "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgCommunicationCallParticipantHoldMusic", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-1.0", @@ -491765,7 +491765,7 @@ "OutputType": "IMicrosoftGraphStopHoldMusicOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-1.0", @@ -491780,7 +491780,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgEntitlementManagementAssignmentRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-cancel?view=graph-rest-1.0", @@ -491795,7 +491795,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgGroupCalendarEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0", @@ -491812,7 +491812,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgGroupEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0", @@ -491829,7 +491829,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -491844,7 +491844,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-1.0", @@ -491859,7 +491859,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-1.0", @@ -491874,7 +491874,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-cancel?view=graph-rest-1.0", @@ -491889,7 +491889,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-cancel?view=graph-rest-1.0", @@ -491904,7 +491904,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgPrintPrinterJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-1.0", @@ -491952,7 +491952,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgPrintShareJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-1.0", @@ -491967,7 +491967,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-1.0", @@ -491999,7 +491999,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-1.0", @@ -492031,7 +492031,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-1.0", @@ -492046,7 +492046,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-1.0", @@ -492061,7 +492061,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgUserEvent", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0", @@ -492078,7 +492078,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Stop-MgUserEventInstance", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0", @@ -492095,7 +492095,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Submit-MgBetaEducationClassAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-beta", @@ -492135,7 +492135,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Submit-MgBetaEducationMeAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-beta", @@ -492150,7 +492150,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Submit-MgBetaEducationUserAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-beta", @@ -492165,7 +492165,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Submit-MgBetaSecurityTiIndicator", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-submittiindicators?view=graph-rest-beta", @@ -492180,7 +492180,7 @@ "OutputType": "IMicrosoftGraphTiIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Submit-MgEducationClassAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-1.0", @@ -492220,7 +492220,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Submit-MgEducationMeAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-1.0", @@ -492235,7 +492235,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Submit-MgEducationUserAssignmentSubmission", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-1.0", @@ -492250,7 +492250,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Suspend-MgApplicationSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0", @@ -492265,7 +492265,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Suspend-MgBetaApplicationSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-beta", @@ -492280,7 +492280,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Suspend-MgBetaDeviceManagementComanagedDeviceConfigurationRefresh", "ApiReferenceLink": null, @@ -492297,7 +492297,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Suspend-MgBetaDeviceManagementManagedDeviceConfigurationRefresh", "ApiReferenceLink": null, @@ -492314,7 +492314,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Suspend-MgBetaEducationSynchronizationProfile", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-pause?view=graph-rest-beta", @@ -492346,7 +492346,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Suspend-MgBetaServicePrincipalSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-beta", @@ -492378,7 +492378,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Suspend-MgBetaUserManagedDeviceConfigurationRefresh", "ApiReferenceLink": null, @@ -492395,7 +492395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Suspend-MgServicePrincipalSynchronizationJob", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0", @@ -492521,7 +492521,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgBetaDeviceManagementAndroidForWorkSettingApp", "ApiReferenceLink": null, @@ -492535,7 +492535,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", "ApiReferenceLink": null, @@ -492549,7 +492549,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgBetaDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -492564,7 +492564,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgBetaDeviceManagementDepOnboardingSettingWithAppleDeviceEnrollmentProgram", "ApiReferenceLink": null, @@ -492579,7 +492579,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgBetaDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -492613,7 +492613,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgBetaDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -492628,7 +492628,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgBetaDeviceManagementWindowsAutopilotSetting", "ApiReferenceLink": null, @@ -492642,7 +492642,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgBetaDeviceManagementWindowsDriverUpdateProfileInventory", "ApiReferenceLink": null, @@ -492657,7 +492657,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgBetaUserManagedDevice", "ApiReferenceLink": null, @@ -492735,7 +492735,7 @@ "OutputType": "IMicrosoftGraphVppToken" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgDeviceManagementExchangeConnector", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-devicemanagementexchangeconnector-sync?view=graph-rest-1.0", @@ -492769,7 +492769,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgDeviceManagementManagedDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-syncdevice?view=graph-rest-1.0", @@ -492784,7 +492784,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Sync-MgUserManagedDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-syncdevice?view=graph-rest-1.0", @@ -492799,7 +492799,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgApplicationProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -492814,7 +492814,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgApplicationSynchronizationJobCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0", @@ -492831,7 +492831,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaAdministrativeUnitProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -492846,7 +492846,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaApplicationProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -492861,7 +492861,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaApplicationSynchronizationJobCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-beta", @@ -492878,7 +492878,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaContactProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -492893,7 +492893,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaContractProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -492923,7 +492923,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDeviceManagementAssignmentFilter", "ApiReferenceLink": null, @@ -492938,7 +492938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDeviceManagementDeviceCompliancePolicyComplianceScript", "ApiReferenceLink": null, @@ -492953,7 +492953,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceScriptValidationResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDeviceManagementVirtualEndpointCloudPcBulkResize", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-validatebulkresize?view=graph-rest-beta", @@ -492968,7 +492968,7 @@ "OutputType": "IMicrosoftGraphCloudPcResizeValidationResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDeviceProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -492983,7 +492983,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDirectoryDeletedItemProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -492998,7 +492998,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDirectoryObjectProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -493046,7 +493046,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDirectoryRoleProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -493061,7 +493061,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDirectoryRoleTemplateProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -493076,7 +493076,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDirectorySettingTemplateProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -493091,7 +493091,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDriveItemPermission", "ApiReferenceLink": null, @@ -493108,7 +493108,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgBetaDriveListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", @@ -493123,7 +493123,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaDriveRootPermission", "ApiReferenceLink": null, @@ -493140,7 +493140,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaExternalIndustryDataConnector", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-industrydataconnector-validate?view=graph-rest-beta", @@ -493172,7 +493172,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupDriveItemPermission", "ApiReferenceLink": null, @@ -493189,7 +493189,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgBetaGroupDriveListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", @@ -493204,7 +493204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupDriveRootPermission", "ApiReferenceLink": null, @@ -493221,7 +493221,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupDynamicMembership", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-evaluatedynamicmembership?view=graph-rest-beta", @@ -493238,7 +493238,7 @@ "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupDynamicMembershipRule", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-evaluatedynamicmembership?view=graph-rest-beta", @@ -493253,7 +493253,7 @@ "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-validateproperties?view=graph-rest-beta", @@ -493287,7 +493287,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgBetaGroupSiteContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", @@ -493302,7 +493302,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -493319,7 +493319,7 @@ "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionPolicyLabelApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta", @@ -493336,7 +493336,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionPolicyLabelClassificationResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta", @@ -493353,7 +493353,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionPolicyLabelRemoval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta", @@ -493370,7 +493370,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -493387,7 +493387,7 @@ "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -493404,7 +493404,7 @@ "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgBetaGroupSiteListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", @@ -493419,7 +493419,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaIdentityConditionalAccess", "ApiReferenceLink": null, @@ -493434,7 +493434,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessWhatIfPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaIdentityCustomAuthenticationExtensionAuthenticationConfiguration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customauthenticationextension-validateauthenticationconfiguration?view=graph-rest-beta", @@ -493468,7 +493468,7 @@ "OutputType": "IMicrosoftGraphAuthenticationConfigurationValidation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -493483,7 +493483,7 @@ "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaInformationProtectionPolicyLabelApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta", @@ -493498,7 +493498,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaInformationProtectionPolicyLabelClassificationResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta", @@ -493513,7 +493513,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaInformationProtectionPolicyLabelRemoval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta", @@ -493545,7 +493545,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaOrganizationProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -493560,7 +493560,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaSecurityInformationProtectionSensitivityLabelApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateapplication?view=graph-rest-beta", @@ -493592,7 +493592,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaSecurityInformationProtectionSensitivityLabelClassificationResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateclassificationresults?view=graph-rest-beta", @@ -493607,7 +493607,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaSecurityInformationProtectionSensitivityLabelRemoval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateremoval?view=graph-rest-beta", @@ -493622,7 +493622,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaServicePrincipalProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -493637,7 +493637,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaServicePrincipalSynchronizationJobCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-beta", @@ -493671,7 +493671,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgBetaShareListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", @@ -493686,7 +493686,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgBetaSiteContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", @@ -493701,7 +493701,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -493718,7 +493718,7 @@ "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionPolicyLabelApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta", @@ -493735,7 +493735,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionPolicyLabelClassificationResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta", @@ -493752,7 +493752,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionPolicyLabelRemoval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta", @@ -493769,7 +493769,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -493786,7 +493786,7 @@ "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -493803,7 +493803,7 @@ "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgBetaSiteListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", @@ -493818,7 +493818,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserCloudPcBulkResize", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-validatebulkresize?view=graph-rest-beta", @@ -493835,7 +493835,7 @@ "OutputType": "IMicrosoftGraphCloudPcResizeValidationResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserDriveItemPermission", "ApiReferenceLink": null, @@ -493852,7 +493852,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgBetaUserDriveListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", @@ -493867,7 +493867,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserDriveRootPermission", "ApiReferenceLink": null, @@ -493884,7 +493884,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -493901,7 +493901,7 @@ "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionPolicyLabelApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta", @@ -493935,7 +493935,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionPolicyLabelClassificationResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta", @@ -493952,7 +493952,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionPolicyLabelRemoval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta", @@ -493969,7 +493969,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -493986,7 +493986,7 @@ "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -494003,7 +494003,7 @@ "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserJoinedGroupDynamicMembership", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-evaluatedynamicmembership?view=graph-rest-beta", @@ -494020,7 +494020,7 @@ "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgBetaUserManagedAppUserBlocked", "ApiReferenceLink": null, @@ -494068,7 +494068,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-validatepassword?view=graph-rest-beta", @@ -494100,7 +494100,7 @@ "OutputType": "IMicrosoftGraphPasswordValidationInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", @@ -494115,7 +494115,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateapplication?view=graph-rest-beta", @@ -494149,7 +494149,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelClassificationResult", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateclassificationresults?view=graph-rest-beta", @@ -494183,7 +494183,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelRemoval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateremoval?view=graph-rest-beta", @@ -494217,7 +494217,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgContactProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494232,7 +494232,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgContractProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494247,7 +494247,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgDeviceProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494262,7 +494262,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgDirectoryDeletedItemProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494277,7 +494277,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgDirectoryObjectProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494325,7 +494325,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgDirectoryRoleProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494340,7 +494340,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgDirectoryRoleTemplateProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494355,7 +494355,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgDriveItemPermission", "ApiReferenceLink": null, @@ -494372,7 +494372,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgDriveListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", @@ -494387,7 +494387,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgDriveRootPermission", "ApiReferenceLink": null, @@ -494404,7 +494404,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgGroupDriveItemPermission", "ApiReferenceLink": null, @@ -494421,7 +494421,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgGroupDriveListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", @@ -494436,7 +494436,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgGroupDriveRootPermission", "ApiReferenceLink": null, @@ -494453,7 +494453,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgGroupProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-validateproperties?view=graph-rest-1.0", @@ -494487,7 +494487,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgGroupSettingTemplateProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494502,7 +494502,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgGroupSiteContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", @@ -494517,7 +494517,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgGroupSiteListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", @@ -494532,7 +494532,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customauthenticationextension-validateauthenticationconfiguration?view=graph-rest-1.0", @@ -494566,7 +494566,7 @@ "OutputType": "IMicrosoftGraphAuthenticationConfigurationValidation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgOrganizationProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494581,7 +494581,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgServicePrincipalProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494596,7 +494596,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgServicePrincipalSynchronizationJobCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0", @@ -494630,7 +494630,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgShareListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", @@ -494645,7 +494645,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgSiteContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", @@ -494660,7 +494660,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgSiteListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", @@ -494675,7 +494675,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgUserDriveItemPermission", "ApiReferenceLink": null, @@ -494692,7 +494692,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "GET", "Command": "Test-MgUserDriveListContentTypePublished", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", @@ -494707,7 +494707,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgUserDriveRootPermission", "ApiReferenceLink": null, @@ -494724,7 +494724,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Test-MgUserProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", @@ -494739,7 +494739,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unblock-MgBetaUserManagedApp", "ApiReferenceLink": null, @@ -494771,7 +494771,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaChatMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494786,7 +494786,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaChatMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494801,7 +494801,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaTeamChannelMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494816,7 +494816,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaTeamChannelMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494831,7 +494831,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaTeamPrimaryChannelMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494846,7 +494846,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaTeamPrimaryChannelMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494861,7 +494861,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaTeamworkDeletedChatDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/deletedchat-undodelete?view=graph-rest-beta", @@ -494876,7 +494876,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaTeamworkDeletedTeamChannelMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494891,7 +494891,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaTeamworkDeletedTeamChannelMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494906,7 +494906,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaUserChatMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494921,7 +494921,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgBetaUserChatMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", @@ -494936,7 +494936,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgChatMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -494951,7 +494951,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgChatMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -494966,7 +494966,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgTeamChannelMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -494981,7 +494981,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgTeamChannelMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -494996,7 +494996,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgTeamPrimaryChannelMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -495011,7 +495011,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgTeamPrimaryChannelMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -495026,7 +495026,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgTeamworkDeletedChatDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/deletedchat-undodelete?view=graph-rest-1.0", @@ -495041,7 +495041,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgTeamworkDeletedTeamChannelMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -495056,7 +495056,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgTeamworkDeletedTeamChannelMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -495071,7 +495071,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgUserChatMessageReplySoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -495086,7 +495086,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Undo-MgUserChatMessageSoftDelete", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", @@ -495101,7 +495101,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBetaBookingBusiness", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-beta", @@ -495118,7 +495118,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBetaDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", @@ -495133,7 +495133,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBetaGroupDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", @@ -495148,7 +495148,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBetaGroupSiteContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", @@ -495163,7 +495163,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBetaGroupSiteListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", @@ -495178,7 +495178,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBetaShareListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", @@ -495193,7 +495193,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBetaSiteContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", @@ -495208,7 +495208,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBetaSiteListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", @@ -495223,7 +495223,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBetaUserDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", @@ -495238,7 +495238,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgBookingBusiness", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-1.0", @@ -495253,7 +495253,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", @@ -495268,7 +495268,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgGroupDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", @@ -495283,7 +495283,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgGroupSiteContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", @@ -495298,7 +495298,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgGroupSiteListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", @@ -495313,7 +495313,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgShareListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", @@ -495328,7 +495328,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgSiteContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", @@ -495343,7 +495343,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgSiteListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", @@ -495358,7 +495358,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Unpublish-MgUserDriveListContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", @@ -495373,7 +495373,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAdminEdge", "ApiReferenceLink": null, @@ -495388,7 +495388,7 @@ "OutputType": "IMicrosoftGraphEdge" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAdminEdgeInternetExplorerMode", "ApiReferenceLink": null, @@ -495403,7 +495403,7 @@ "OutputType": "IMicrosoftGraphInternetExplorerMode" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -495420,7 +495420,7 @@ "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -495437,7 +495437,7 @@ "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -495454,7 +495454,7 @@ "OutputType": "IMicrosoftGraphBrowserSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -495471,7 +495471,7 @@ "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAdminPeoplePronoun", "ApiReferenceLink": null, @@ -495486,7 +495486,7 @@ "OutputType": "IMicrosoftGraphPronounsSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAdminSharepoint", "ApiReferenceLink": null, @@ -495501,7 +495501,7 @@ "OutputType": "IMicrosoftGraphSharepoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAdminSharepointSetting", "ApiReferenceLink": null, @@ -495516,7 +495516,7 @@ "OutputType": "IMicrosoftGraphSharepointSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAgreement", "ApiReferenceLink": null, @@ -495533,7 +495533,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAgreementAcceptance", "ApiReferenceLink": null, @@ -495550,7 +495550,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAgreementFile", "ApiReferenceLink": null, @@ -495567,7 +495567,7 @@ "OutputType": "IMicrosoftGraphAgreementFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAgreementFileLocalization", "ApiReferenceLink": null, @@ -495584,7 +495584,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -495601,7 +495601,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAgreementFileVersion", "ApiReferenceLink": null, @@ -495618,7 +495618,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAppCatalogTeamApp", "ApiReferenceLink": null, @@ -495635,7 +495635,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -495652,7 +495652,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgAppCatalogTeamAppDefinitionBot", "ApiReferenceLink": null, @@ -495669,7 +495669,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0", @@ -495703,7 +495703,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0", @@ -495720,7 +495720,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0", @@ -495737,7 +495737,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationExtensionProperty", "ApiReferenceLink": null, @@ -495754,7 +495754,7 @@ "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -495788,7 +495788,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationFederatedIdentityCredentialByName", "ApiReferenceLink": null, @@ -495805,7 +495805,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -495822,7 +495822,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -495839,7 +495839,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationJobSchema", "ApiReferenceLink": null, @@ -495856,7 +495856,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -495873,7 +495873,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -495907,7 +495907,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -495924,7 +495924,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -495941,7 +495941,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAccessReview", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-update?view=graph-rest-beta", @@ -495975,7 +495975,7 @@ "OutputType": "IMicrosoftGraphAccessReview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAccessReviewDecision", "ApiReferenceLink": null, @@ -495992,7 +495992,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAccessReviewInstance", "ApiReferenceLink": null, @@ -496009,7 +496009,7 @@ "OutputType": "IMicrosoftGraphAccessReview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAccessReviewInstanceDecision", "ApiReferenceLink": null, @@ -496026,7 +496026,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAccessReviewInstanceMyDecision", "ApiReferenceLink": null, @@ -496043,7 +496043,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAccessReviewInstanceReviewer", "ApiReferenceLink": null, @@ -496060,7 +496060,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAccessReviewMyDecision", "ApiReferenceLink": null, @@ -496077,7 +496077,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAccessReviewReviewer", "ApiReferenceLink": null, @@ -496094,7 +496094,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminEdge", "ApiReferenceLink": null, @@ -496109,7 +496109,7 @@ "OutputType": "IMicrosoftGraphEdge" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminEdgeInternetExplorerMode", "ApiReferenceLink": null, @@ -496124,7 +496124,7 @@ "OutputType": "IMicrosoftGraphInternetExplorerMode" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -496141,7 +496141,7 @@ "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -496158,7 +496158,7 @@ "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -496175,7 +496175,7 @@ "OutputType": "IMicrosoftGraphBrowserSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdministrativeUnit", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-update?view=graph-rest-beta", @@ -496192,7 +496192,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -496209,7 +496209,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -496226,7 +496226,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminPeople", "ApiReferenceLink": null, @@ -496241,7 +496241,7 @@ "OutputType": "IMicrosoftGraphPeopleAdminSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminPeopleItemInsight", "ApiReferenceLink": null, @@ -496256,7 +496256,7 @@ "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -496273,7 +496273,7 @@ "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminPeoplePronoun", "ApiReferenceLink": null, @@ -496288,7 +496288,7 @@ "OutputType": "IMicrosoftGraphPronounsSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminReportSetting", "ApiReferenceLink": null, @@ -496303,7 +496303,7 @@ "OutputType": "IMicrosoftGraphAdminReportSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminSharepoint", "ApiReferenceLink": null, @@ -496318,7 +496318,7 @@ "OutputType": "IMicrosoftGraphSharepoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAdminSharepointSetting", "ApiReferenceLink": null, @@ -496333,7 +496333,7 @@ "OutputType": "IMicrosoftGraphSharepointSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAgreement", "ApiReferenceLink": null, @@ -496350,7 +496350,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAgreementAcceptance", "ApiReferenceLink": null, @@ -496367,7 +496367,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAgreementFile", "ApiReferenceLink": null, @@ -496384,7 +496384,7 @@ "OutputType": "IMicrosoftGraphAgreementFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAgreementFileLocalization", "ApiReferenceLink": null, @@ -496401,7 +496401,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -496418,7 +496418,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAgreementFileVersion", "ApiReferenceLink": null, @@ -496435,7 +496435,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamApp", "ApiReferenceLink": null, @@ -496452,7 +496452,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -496469,7 +496469,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionBot", "ApiReferenceLink": null, @@ -496486,7 +496486,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionColorIcon", "ApiReferenceLink": null, @@ -496503,7 +496503,7 @@ "OutputType": "IMicrosoftGraphTeamsAppIcon" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent", "ApiReferenceLink": null, @@ -496520,7 +496520,7 @@ "OutputType": "IMicrosoftGraphTeamworkHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionDashboardCard", "ApiReferenceLink": null, @@ -496537,7 +496537,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionOutlineIcon", "ApiReferenceLink": null, @@ -496554,7 +496554,7 @@ "OutputType": "IMicrosoftGraphTeamsAppIcon" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent", "ApiReferenceLink": null, @@ -496571,7 +496571,7 @@ "OutputType": "IMicrosoftGraphTeamworkHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta", @@ -496605,7 +496605,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta", @@ -496622,7 +496622,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta", @@ -496639,7 +496639,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationExtensionProperty", "ApiReferenceLink": null, @@ -496656,7 +496656,7 @@ "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -496690,7 +496690,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationFederatedIdentityCredentialByName", "ApiReferenceLink": null, @@ -496707,7 +496707,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -496724,7 +496724,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -496741,7 +496741,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationJobSchema", "ApiReferenceLink": null, @@ -496758,7 +496758,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -496775,7 +496775,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -496809,7 +496809,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -496826,7 +496826,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -496843,7 +496843,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBookingBusiness", "ApiReferenceLink": null, @@ -496881,7 +496881,7 @@ "OutputType": "IMicrosoftGraphBookingBusiness" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBookingBusinessAppointment", "ApiReferenceLink": null, @@ -496935,7 +496935,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -496956,7 +496956,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBookingBusinessCustomer", "ApiReferenceLink": null, @@ -497010,7 +497010,7 @@ "OutputType": "IMicrosoftGraphBookingCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -497056,7 +497056,7 @@ "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBookingBusinessService", "ApiReferenceLink": null, @@ -497094,7 +497094,7 @@ "OutputType": "IMicrosoftGraphBookingService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -497132,7 +497132,7 @@ "OutputType": "IMicrosoftGraphBookingStaffMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBookingCurrency", "ApiReferenceLink": null, @@ -497153,7 +497153,7 @@ "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessFlowTemplate", "ApiReferenceLink": null, @@ -497170,7 +497170,7 @@ "OutputType": "IMicrosoftGraphBusinessFlowTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenario", "ApiReferenceLink": null, @@ -497204,7 +497204,7 @@ "OutputType": "IMicrosoftGraphBusinessScenario" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioByUniqueName", "ApiReferenceLink": null, @@ -497221,7 +497221,7 @@ "OutputType": "IMicrosoftGraphBusinessScenario" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlanner", "ApiReferenceLink": null, @@ -497238,7 +497238,7 @@ "OutputType": "IMicrosoftGraphBusinessScenarioPlanner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerPlanConfiguration", "ApiReferenceLink": null, @@ -497272,7 +497272,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", "ApiReferenceLink": null, @@ -497306,7 +497306,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerTask", "ApiReferenceLink": null, @@ -497323,7 +497323,7 @@ "OutputType": "IMicrosoftGraphBusinessScenarioTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerTaskAssignedToTaskBoardFormat", "ApiReferenceLink": null, @@ -497340,7 +497340,7 @@ "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerTaskBucketTaskBoardFormat", "ApiReferenceLink": null, @@ -497357,7 +497357,7 @@ "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerTaskConfiguration", "ApiReferenceLink": null, @@ -497391,7 +497391,7 @@ "OutputType": "IMicrosoftGraphPlannerTaskConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerTaskDetail", "ApiReferenceLink": null, @@ -497408,7 +497408,7 @@ "OutputType": "IMicrosoftGraphPlannerTaskDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerTaskProgressTaskBoardFormat", "ApiReferenceLink": null, @@ -497425,7 +497425,7 @@ "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-patch?view=graph-rest-beta", @@ -497467,7 +497467,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaChatInstalledApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-beta", @@ -497573,7 +497573,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChatLastMessagePreview", "ApiReferenceLink": null, @@ -497590,7 +497590,7 @@ "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChatMember", "ApiReferenceLink": null, @@ -497607,7 +497607,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChatMessage", "ApiReferenceLink": null, @@ -497657,7 +497657,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChatMessageReply", "ApiReferenceLink": null, @@ -497674,7 +497674,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -497691,7 +497691,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChatOperation", "ApiReferenceLink": null, @@ -497708,7 +497708,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChatPermissionGrant", "ApiReferenceLink": null, @@ -497725,7 +497725,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChatPinnedMessage", "ApiReferenceLink": null, @@ -497742,7 +497742,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaChatTab", "ApiReferenceLink": null, @@ -497800,7 +497800,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -497834,7 +497834,7 @@ "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -497851,7 +497851,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallOperation", "ApiReferenceLink": null, @@ -497868,7 +497868,7 @@ "OutputType": "IMicrosoftGraphCommsOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallParticipant", "ApiReferenceLink": null, @@ -497885,7 +497885,7 @@ "OutputType": "IMicrosoftGraphParticipant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaCommunicationCallRecordingStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-beta", @@ -497919,7 +497919,7 @@ "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallRecordOrganizerV2", "ApiReferenceLink": null, @@ -497936,7 +497936,7 @@ "OutputType": "IMicrosoftGraphCallRecordsOrganizer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallRecordParticipantV2", "ApiReferenceLink": null, @@ -497953,7 +497953,7 @@ "OutputType": "IMicrosoftGraphCallRecordsParticipant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -497970,7 +497970,7 @@ "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -497987,7 +497987,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -498008,7 +498008,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -498029,7 +498029,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingByJoinWebUrl", "ApiReferenceLink": null, @@ -498046,7 +498046,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -498063,7 +498063,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingRegistration", "ApiReferenceLink": null, @@ -498080,7 +498080,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -498097,7 +498097,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -498114,7 +498114,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -498131,7 +498131,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCommunicationPresence", "ApiReferenceLink": null, @@ -498148,7 +498148,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaCompliance", "ApiReferenceLink": null, @@ -498163,7 +498163,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscovery", "ApiReferenceLink": null, @@ -498178,7 +498178,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCase", "ApiReferenceLink": null, @@ -498212,7 +498212,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -498246,7 +498246,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodianIndex", "ApiReferenceLink": null, @@ -498261,7 +498261,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -498278,7 +498278,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -498295,7 +498295,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -498312,7 +498312,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -498346,7 +498346,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryLegalHold" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -498363,7 +498363,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "ApiReferenceLink": null, @@ -498380,7 +498380,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -498397,7 +498397,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -498414,7 +498414,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceIndex", "ApiReferenceLink": null, @@ -498429,7 +498429,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -498446,7 +498446,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -498463,7 +498463,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -498497,7 +498497,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseSetting", "ApiReferenceLink": null, @@ -498514,7 +498514,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseSourceCollection", "ApiReferenceLink": null, @@ -498548,7 +498548,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySourceCollection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "ApiReferenceLink": null, @@ -498565,7 +498565,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -498599,7 +498599,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaContact", "ApiReferenceLink": null, @@ -498616,7 +498616,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaContract", "ApiReferenceLink": null, @@ -498633,7 +498633,7 @@ "OutputType": "IMicrosoftGraphContract" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDataPolicyOperation", "ApiReferenceLink": null, @@ -498650,7 +498650,7 @@ "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-beta", @@ -501850,7 +501850,7 @@ "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceByDeviceId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-beta", @@ -501867,7 +501867,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceCommand", "ApiReferenceLink": null, @@ -501884,7 +501884,7 @@ "OutputType": "IMicrosoftGraphCommand" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceExtension", "ApiReferenceLink": null, @@ -501901,7 +501901,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagement", "ApiReferenceLink": null, @@ -501957,7 +501957,7 @@ "OutputType": "IMicrosoftGraphDeviceManagement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", "ApiReferenceLink": null, @@ -501972,7 +501972,7 @@ "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "ApiReferenceLink": null, @@ -501989,7 +501989,7 @@ "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "ApiReferenceLink": null, @@ -502006,7 +502006,7 @@ "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", "ApiReferenceLink": null, @@ -502023,7 +502023,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", "ApiReferenceLink": null, @@ -502040,7 +502040,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidForWorkSetting", "ApiReferenceLink": null, @@ -502055,7 +502055,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "ApiReferenceLink": null, @@ -502070,7 +502070,7 @@ "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", "ApiReferenceLink": null, @@ -502087,7 +502087,7 @@ "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementApplePushNotificationCertificate", "ApiReferenceLink": null, @@ -502119,7 +502119,7 @@ "OutputType": "IMicrosoftGraphApplePushNotificationCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", "ApiReferenceLink": null, @@ -502136,7 +502136,7 @@ "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "ApiReferenceLink": null, @@ -502153,7 +502153,7 @@ "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAssignmentFilter", "ApiReferenceLink": null, @@ -502170,7 +502170,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -502187,7 +502187,7 @@ "OutputType": "IMicrosoftGraphAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAutopilotEvent", "ApiReferenceLink": null, @@ -502204,7 +502204,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", "ApiReferenceLink": null, @@ -502221,7 +502221,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCartToClassAssociation", "ApiReferenceLink": null, @@ -502238,7 +502238,7 @@ "OutputType": "IMicrosoftGraphCartToClassAssociation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCategory", "ApiReferenceLink": null, @@ -502255,7 +502255,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCategorySettingDefinition", "ApiReferenceLink": null, @@ -502272,7 +502272,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -502289,7 +502289,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceCategory", "ApiReferenceLink": null, @@ -502306,7 +502306,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -502323,7 +502323,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -502340,7 +502340,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -502357,7 +502357,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -502374,7 +502374,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -502391,7 +502391,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -502408,7 +502408,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -502425,7 +502425,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -502442,7 +502442,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -502459,7 +502459,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagementEligibleDevice", "ApiReferenceLink": null, @@ -502493,7 +502493,7 @@ "OutputType": "IMicrosoftGraphComanagementEligibleDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -502527,7 +502527,7 @@ "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicy", "ApiReferenceLink": null, @@ -502544,7 +502544,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -502561,7 +502561,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -502578,7 +502578,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -502595,7 +502595,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicySetting", "ApiReferenceLink": null, @@ -502612,7 +502612,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComplianceSetting", "ApiReferenceLink": null, @@ -502629,7 +502629,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConditionalAccessSetting", "ApiReferenceLink": null, @@ -502661,7 +502661,7 @@ "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicy", "ApiReferenceLink": null, @@ -502678,7 +502678,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicyAssignment", "ApiReferenceLink": null, @@ -502695,7 +502695,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicySetting", "ApiReferenceLink": null, @@ -502712,7 +502712,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicyTemplate", "ApiReferenceLink": null, @@ -502729,7 +502729,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", "ApiReferenceLink": null, @@ -502746,7 +502746,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", "ApiReferenceLink": null, @@ -502763,7 +502763,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationSetting", "ApiReferenceLink": null, @@ -502780,7 +502780,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDataSharingConsent", "ApiReferenceLink": null, @@ -502814,7 +502814,7 @@ "OutputType": "IMicrosoftGraphDataSharingConsent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDepOnboardingSetting", "ApiReferenceLink": null, @@ -502831,7 +502831,7 @@ "OutputType": "IMicrosoftGraphDepOnboardingSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", "ApiReferenceLink": null, @@ -502848,7 +502848,7 @@ "OutputType": "IMicrosoftGraphEnrollmentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileDeviceProfileAssignment", "ApiReferenceLink": null, @@ -502865,7 +502865,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "ApiReferenceLink": null, @@ -502882,7 +502882,7 @@ "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDerivedCredential", "ApiReferenceLink": null, @@ -502899,7 +502899,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -502933,7 +502933,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -502967,7 +502967,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -502984,7 +502984,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -503001,7 +503001,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceComplianceReportSummarization", "ApiReferenceLink": null, @@ -503015,7 +503015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -503032,7 +503032,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "ApiReferenceLink": null, @@ -503047,7 +503047,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -503064,7 +503064,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "ApiReferenceLink": null, @@ -503081,7 +503081,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -503098,7 +503098,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -503115,7 +503115,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -503132,7 +503132,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -503149,7 +503149,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -503166,7 +503166,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview", "ApiReferenceLink": null, @@ -503183,7 +503183,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -503200,7 +503200,7 @@ "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -503217,7 +503217,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationConflictSummary", "ApiReferenceLink": null, @@ -503234,7 +503234,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -503251,7 +503251,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary", "ApiReferenceLink": null, @@ -503266,7 +503266,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -503283,7 +503283,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview", "ApiReferenceLink": null, @@ -503300,7 +503300,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", "ApiReferenceLink": null, @@ -503317,7 +503317,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "ApiReferenceLink": null, @@ -503334,7 +503334,7 @@ "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationProfile", "ApiReferenceLink": null, @@ -503351,7 +503351,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", "ApiReferenceLink": null, @@ -503368,7 +503368,7 @@ "OutputType": "IMicrosoftGraphRestrictedAppsViolation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationUserStateSummary", "ApiReferenceLink": null, @@ -503383,7 +503383,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -503400,7 +503400,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview", "ApiReferenceLink": null, @@ -503417,7 +503417,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -503451,7 +503451,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -503485,7 +503485,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceHealthScript", "ApiReferenceLink": null, @@ -503519,7 +503519,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptAssignment", "ApiReferenceLink": null, @@ -503553,7 +503553,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", "ApiReferenceLink": null, @@ -503587,7 +503587,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptGlobalScript", "ApiReferenceLink": null, @@ -503621,7 +503621,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptRunSummary", "ApiReferenceLink": null, @@ -503655,7 +503655,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceShellScript", "ApiReferenceLink": null, @@ -503689,7 +503689,7 @@ "OutputType": "IMicrosoftGraphDeviceShellScript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceShellScriptAssignment", "ApiReferenceLink": null, @@ -503723,7 +503723,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", "ApiReferenceLink": null, @@ -503757,7 +503757,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", "ApiReferenceLink": null, @@ -503791,7 +503791,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceShellScriptUserRunState", "ApiReferenceLink": null, @@ -503825,7 +503825,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -503842,7 +503842,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDomainJoinConnector", "ApiReferenceLink": null, @@ -503859,7 +503859,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementEmbeddedSimActivationCodePool", "ApiReferenceLink": null, @@ -503876,7 +503876,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", "ApiReferenceLink": null, @@ -503893,7 +503893,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "ApiReferenceLink": null, @@ -503910,7 +503910,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -503944,7 +503944,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementExchangeOnPremisePolicy", "ApiReferenceLink": null, @@ -503980,7 +503980,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementExchangeOnPremisePolicyConditionalAccessSetting", "ApiReferenceLink": null, @@ -503999,7 +503999,7 @@ "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyCategory", "ApiReferenceLink": null, @@ -504016,7 +504016,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfiguration", "ApiReferenceLink": null, @@ -504033,7 +504033,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", "ApiReferenceLink": null, @@ -504050,7 +504050,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", "ApiReferenceLink": null, @@ -504067,7 +504067,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "ApiReferenceLink": null, @@ -504084,7 +504084,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfigurationMultipleDefinitionValue", "ApiReferenceLink": null, @@ -504101,7 +504101,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinition", "ApiReferenceLink": null, @@ -504118,7 +504118,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionFile", "ApiReferenceLink": null, @@ -504135,7 +504135,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinition", "ApiReferenceLink": null, @@ -504152,7 +504152,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -504169,7 +504169,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinition", "ApiReferenceLink": null, @@ -504186,7 +504186,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -504203,7 +504203,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", "ApiReferenceLink": null, @@ -504220,7 +504220,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", "ApiReferenceLink": null, @@ -504237,7 +504237,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinition", "ApiReferenceLink": null, @@ -504254,7 +504254,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -504271,7 +504271,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -504288,7 +504288,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyMigrationReport", "ApiReferenceLink": null, @@ -504305,7 +504305,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "ApiReferenceLink": null, @@ -504322,7 +504322,7 @@ "OutputType": "IMicrosoftGraphGroupPolicySettingMapping" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementGroupPolicyMigrationReportScopeTag", "ApiReferenceLink": null, @@ -504339,7 +504339,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "ApiReferenceLink": null, @@ -504356,7 +504356,7 @@ "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyObjectFile", "ApiReferenceLink": null, @@ -504373,7 +504373,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyObjectFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", "ApiReferenceLink": null, @@ -504390,7 +504390,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "ApiReferenceLink": null, @@ -504407,7 +504407,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", "ApiReferenceLink": null, @@ -504424,7 +504424,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementImportedDeviceIdentity", "ApiReferenceLink": null, @@ -504441,7 +504441,7 @@ "OutputType": "IMicrosoftGraphImportedDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -504458,7 +504458,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntent", "ApiReferenceLink": null, @@ -504475,7 +504475,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentAssignment", "ApiReferenceLink": null, @@ -504492,7 +504492,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentCategory", "ApiReferenceLink": null, @@ -504509,7 +504509,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentCategorySetting", "ApiReferenceLink": null, @@ -504526,7 +504526,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentCategorySettingDefinition", "ApiReferenceLink": null, @@ -504543,7 +504543,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -504560,7 +504560,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentDeviceState", "ApiReferenceLink": null, @@ -504577,7 +504577,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentDeviceStateSummary", "ApiReferenceLink": null, @@ -504594,7 +504594,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementIntentMultipleSetting", "ApiReferenceLink": null, @@ -504611,7 +504611,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentSetting", "ApiReferenceLink": null, @@ -504628,7 +504628,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentUserState", "ApiReferenceLink": null, @@ -504645,7 +504645,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentUserStateSummary", "ApiReferenceLink": null, @@ -504662,7 +504662,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntuneBrandingProfile", "ApiReferenceLink": null, @@ -504679,7 +504679,7 @@ "OutputType": "IMicrosoftGraphIntuneBrandingProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntuneBrandingProfileAssignment", "ApiReferenceLink": null, @@ -504696,7 +504696,7 @@ "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -504713,7 +504713,7 @@ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", "ApiReferenceLink": null, @@ -504730,7 +504730,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "ApiReferenceLink": null, @@ -504747,7 +504747,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryStateSummary", "ApiReferenceLink": null, @@ -504764,7 +504764,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -504798,7 +504798,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -504815,7 +504815,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceCategory", "ApiReferenceLink": null, @@ -504832,7 +504832,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceCleanupRule", "ApiReferenceLink": null, @@ -504849,7 +504849,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -504866,7 +504866,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -504883,7 +504883,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceEncryptionState", "ApiReferenceLink": null, @@ -504900,7 +504900,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -504917,7 +504917,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -504934,7 +504934,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -504951,7 +504951,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -504968,7 +504968,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -504985,7 +504985,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementManagedDeviceWindowsDeviceAccount", "ApiReferenceLink": null, @@ -505002,7 +505002,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -505019,7 +505019,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -505036,7 +505036,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelConfiguration", "ApiReferenceLink": null, @@ -505053,7 +505053,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", "ApiReferenceLink": null, @@ -505070,7 +505070,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "ApiReferenceLink": null, @@ -505087,7 +505087,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelSite", "ApiReferenceLink": null, @@ -505104,7 +505104,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", "ApiReferenceLink": null, @@ -505121,7 +505121,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "ApiReferenceLink": null, @@ -505138,7 +505138,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelServer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -505155,7 +505155,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -505189,7 +505189,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -505223,7 +505223,7 @@ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMonitoring", "ApiReferenceLink": null, @@ -505238,7 +505238,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementMonitoring" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMonitoringAlertRecord", "ApiReferenceLink": null, @@ -505255,7 +505255,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMonitoringAlertRule", "ApiReferenceLink": null, @@ -505272,7 +505272,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAlertRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementNdeConnector", "ApiReferenceLink": null, @@ -505289,7 +505289,7 @@ "OutputType": "IMicrosoftGraphNdesConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -505306,7 +505306,7 @@ "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -505323,7 +505323,7 @@ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementPartner", "ApiReferenceLink": null, @@ -505357,7 +505357,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementRemoteActionAudit", "ApiReferenceLink": null, @@ -505391,7 +505391,7 @@ "OutputType": "IMicrosoftGraphRemoteActionAudit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -505425,7 +505425,7 @@ "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementReport", "ApiReferenceLink": null, @@ -505473,7 +505473,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementReports" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementResourceAccessProfile", "ApiReferenceLink": null, @@ -505490,7 +505490,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementResourceAccessProfileAssignment", "ApiReferenceLink": null, @@ -505507,7 +505507,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -505541,7 +505541,7 @@ "OutputType": "IMicrosoftGraphResourceOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementReusableSetting", "ApiReferenceLink": null, @@ -505558,7 +505558,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -505592,7 +505592,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -505626,7 +505626,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -505660,7 +505660,7 @@ "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementRoleScopeTag", "ApiReferenceLink": null, @@ -505694,7 +505694,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementRoleScopeTagAssignment", "ApiReferenceLink": null, @@ -505711,7 +505711,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementScript", "ApiReferenceLink": null, @@ -505728,7 +505728,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementScriptAssignment", "ApiReferenceLink": null, @@ -505762,7 +505762,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementScriptDeviceRunState", "ApiReferenceLink": null, @@ -505796,7 +505796,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementScriptGroupAssignment", "ApiReferenceLink": null, @@ -505830,7 +505830,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementScriptUserRunState", "ApiReferenceLink": null, @@ -505864,7 +505864,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -505898,7 +505898,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementSettingDefinition", "ApiReferenceLink": null, @@ -505915,7 +505915,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -505932,7 +505932,7 @@ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplate", "ApiReferenceLink": null, @@ -505949,7 +505949,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateCategory", "ApiReferenceLink": null, @@ -505966,7 +505966,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -505983,7 +505983,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateCategorySettingDefinition", "ApiReferenceLink": null, @@ -506000,7 +506000,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableTo", "ApiReferenceLink": null, @@ -506017,7 +506017,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableToCategory", "ApiReferenceLink": null, @@ -506034,7 +506034,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -506051,7 +506051,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", "ApiReferenceLink": null, @@ -506068,7 +506068,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableToSetting", "ApiReferenceLink": null, @@ -506085,7 +506085,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateSetting", "ApiReferenceLink": null, @@ -506102,7 +506102,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -506119,7 +506119,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -506136,7 +506136,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -506153,7 +506153,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTermAndConditionGroupAssignment", "ApiReferenceLink": null, @@ -506170,7 +506170,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -506187,7 +506187,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", "ApiReferenceLink": null, @@ -506221,7 +506221,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", "ApiReferenceLink": null, @@ -506238,7 +506238,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", "ApiReferenceLink": null, @@ -506272,7 +506272,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -506306,7 +506306,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "ApiReferenceLink": null, @@ -506340,7 +506340,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -506374,7 +506374,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -506408,7 +506408,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -506442,7 +506442,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -506476,7 +506476,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -506510,7 +506510,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -506544,7 +506544,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -506578,7 +506578,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverview", "ApiReferenceLink": null, @@ -506610,7 +506610,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -506627,7 +506627,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -506661,7 +506661,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "ApiReferenceLink": null, @@ -506695,7 +506695,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", "ApiReferenceLink": null, @@ -506727,7 +506727,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "ApiReferenceLink": null, @@ -506761,7 +506761,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "ApiReferenceLink": null, @@ -506795,7 +506795,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "ApiReferenceLink": null, @@ -506829,7 +506829,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "ApiReferenceLink": null, @@ -506863,7 +506863,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "ApiReferenceLink": null, @@ -506897,7 +506897,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", "ApiReferenceLink": null, @@ -506929,7 +506929,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -506963,7 +506963,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -506980,7 +506980,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "ApiReferenceLink": null, @@ -507014,7 +507014,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -507048,7 +507048,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", "ApiReferenceLink": null, @@ -507084,7 +507084,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -507118,7 +507118,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -507152,7 +507152,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -507186,7 +507186,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -507220,7 +507220,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", "ApiReferenceLink": null, @@ -507237,7 +507237,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "ApiReferenceLink": null, @@ -507271,7 +507271,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", "ApiReferenceLink": null, @@ -507305,7 +507305,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -507339,7 +507339,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -507373,7 +507373,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "ApiReferenceLink": null, @@ -507407,7 +507407,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticOverview", "ApiReferenceLink": null, @@ -507439,7 +507439,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", "ApiReferenceLink": null, @@ -507473,7 +507473,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", "ApiReferenceLink": null, @@ -507507,7 +507507,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -507541,7 +507541,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "ApiReferenceLink": null, @@ -507573,7 +507573,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -507607,7 +507607,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -507641,7 +507641,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -507675,7 +507675,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserPfxCertificate", "ApiReferenceLink": null, @@ -507692,7 +507692,7 @@ "OutputType": "IMicrosoftGraphUserPfxCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointBulkAction", "ApiReferenceLink": null, @@ -507709,7 +507709,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointCrossCloudGovernmentOrganizationMapping", "ApiReferenceLink": null, @@ -507724,7 +507724,7 @@ "OutputType": "IMicrosoftGraphCloudPcCrossCloudGovernmentOrganizationMapping" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -507741,7 +507741,7 @@ "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", "ApiReferenceLink": null, @@ -507758,7 +507758,7 @@ "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", "ApiReferenceLink": null, @@ -507775,7 +507775,7 @@ "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -507792,7 +507792,7 @@ "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -507809,7 +507809,7 @@ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta", @@ -507826,7 +507826,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointOrganizationSetting", "ApiReferenceLink": null, @@ -507858,7 +507858,7 @@ "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -507875,7 +507875,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -507892,7 +507892,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting", "ApiReferenceLink": null, @@ -507909,7 +507909,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointReport", "ApiReferenceLink": null, @@ -507924,7 +507924,7 @@ "OutputType": "IMicrosoftGraphCloudPcReports" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointReportExportJob", "ApiReferenceLink": null, @@ -507941,7 +507941,7 @@ "OutputType": "IMicrosoftGraphCloudPcExportJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointServicePlan", "ApiReferenceLink": null, @@ -507958,7 +507958,7 @@ "OutputType": "IMicrosoftGraphCloudPcServicePlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", "ApiReferenceLink": null, @@ -507975,7 +507975,7 @@ "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointSnapshot", "ApiReferenceLink": null, @@ -507992,7 +507992,7 @@ "OutputType": "IMicrosoftGraphCloudPcSnapshot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointSupportedRegion", "ApiReferenceLink": null, @@ -508009,7 +508009,7 @@ "OutputType": "IMicrosoftGraphCloudPcSupportedRegion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -508026,7 +508026,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -508043,7 +508043,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", "ApiReferenceLink": null, @@ -508060,7 +508060,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", "ApiReferenceLink": null, @@ -508077,7 +508077,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", "ApiReferenceLink": null, @@ -508094,7 +508094,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty", "ApiReferenceLink": null, @@ -508111,7 +508111,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotSetting", "ApiReferenceLink": null, @@ -508126,7 +508126,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsFeatureUpdateProfile", "ApiReferenceLink": null, @@ -508143,7 +508143,7 @@ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", "ApiReferenceLink": null, @@ -508160,7 +508160,7 @@ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -508177,7 +508177,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -508194,7 +508194,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -508228,7 +508228,7 @@ "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -508262,7 +508262,7 @@ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsQualityUpdateProfile", "ApiReferenceLink": null, @@ -508279,7 +508279,7 @@ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", "ApiReferenceLink": null, @@ -508296,7 +508296,7 @@ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDeviceUsageRights", "ApiReferenceLink": null, @@ -508313,7 +508313,7 @@ "OutputType": "IMicrosoftGraphUsageRight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectory", "ApiReferenceLink": null, @@ -508328,7 +508328,7 @@ "OutputType": "IMicrosoftGraphDirectory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -508345,7 +508345,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -508362,7 +508362,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -508379,7 +508379,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryAttributeSet", "ApiReferenceLink": null, @@ -508396,7 +508396,7 @@ "OutputType": "IMicrosoftGraphAttributeSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryCertificateAuthority", "ApiReferenceLink": null, @@ -508411,7 +508411,7 @@ "OutputType": "IMicrosoftGraphCertificateAuthorityPath" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", "ApiReferenceLink": null, @@ -508428,7 +508428,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", "ApiReferenceLink": null, @@ -508462,7 +508462,7 @@ "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -508479,7 +508479,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -508496,7 +508496,7 @@ "OutputType": "IMicrosoftGraphAllowedValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryDeviceLocalCredential", "ApiReferenceLink": null, @@ -508513,7 +508513,7 @@ "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryExternalUserProfile", "ApiReferenceLink": null, @@ -508530,7 +508530,7 @@ "OutputType": "IMicrosoftGraphExternalUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -508547,7 +508547,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -508564,7 +508564,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryImpactedResource", "ApiReferenceLink": null, @@ -508581,7 +508581,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryInboundSharedUserProfile", "ApiReferenceLink": null, @@ -508598,7 +508598,7 @@ "OutputType": "IMicrosoftGraphInboundSharedUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryObject", "ApiReferenceLink": null, @@ -508615,7 +508615,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -508632,7 +508632,7 @@ "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryOutboundSharedUserProfile", "ApiReferenceLink": null, @@ -508649,7 +508649,7 @@ "OutputType": "IMicrosoftGraphOutboundSharedUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryOutboundSharedUserProfileTenant", "ApiReferenceLink": null, @@ -508666,7 +508666,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryPendingExternalUserProfile", "ApiReferenceLink": null, @@ -508683,7 +508683,7 @@ "OutputType": "IMicrosoftGraphPendingExternalUserProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryRecommendation", "ApiReferenceLink": null, @@ -508700,7 +508700,7 @@ "OutputType": "IMicrosoftGraphRecommendation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryRecommendationImpactedResource", "ApiReferenceLink": null, @@ -508717,7 +508717,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryRole", "ApiReferenceLink": null, @@ -508734,7 +508734,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryRoleByRoleTemplateId", "ApiReferenceLink": null, @@ -508751,7 +508751,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -508768,7 +508768,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectoryRoleTemplate", "ApiReferenceLink": null, @@ -508785,7 +508785,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectorySetting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-update?view=graph-rest-beta", @@ -508819,7 +508819,7 @@ "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectorySettingTemplate", "ApiReferenceLink": null, @@ -508836,7 +508836,7 @@ "OutputType": "IMicrosoftGraphDirectorySettingTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectorySharedEmailDomain", "ApiReferenceLink": null, @@ -508853,7 +508853,7 @@ "OutputType": "IMicrosoftGraphSharedEmailDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectorySubscription", "ApiReferenceLink": null, @@ -508870,7 +508870,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectorySubscriptionByCommerceSubscriptionId", "ApiReferenceLink": null, @@ -508887,7 +508887,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDirectorySubscriptionByOcpSubscriptionId", "ApiReferenceLink": null, @@ -508904,7 +508904,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-update?view=graph-rest-beta", @@ -508921,7 +508921,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDomainFederationConfiguration", "ApiReferenceLink": null, @@ -508938,7 +508938,7 @@ "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -508955,7 +508955,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDomainSharedEmailDomainInvitation", "ApiReferenceLink": null, @@ -508972,7 +508972,7 @@ "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -508989,7 +508989,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDrive", "ApiReferenceLink": null, @@ -509006,7 +509006,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509023,7 +509023,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItem", "ApiReferenceLink": null, @@ -509065,7 +509065,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemAnalytic", "ApiReferenceLink": null, @@ -509082,7 +509082,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -509099,7 +509099,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509116,7 +509116,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509133,7 +509133,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItem", "ApiReferenceLink": null, @@ -509150,7 +509150,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509167,7 +509167,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -509184,7 +509184,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -509201,7 +509201,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemField", "ApiReferenceLink": null, @@ -509218,7 +509218,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509235,7 +509235,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemVersion", "ApiReferenceLink": null, @@ -509252,7 +509252,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -509269,7 +509269,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemPermission", "ApiReferenceLink": null, @@ -509311,7 +509311,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -509328,7 +509328,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemSubscription", "ApiReferenceLink": null, @@ -509345,7 +509345,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemThumbnail", "ApiReferenceLink": null, @@ -509362,7 +509362,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveItemVersion", "ApiReferenceLink": null, @@ -509379,7 +509379,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509396,7 +509396,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveList", "ApiReferenceLink": null, @@ -509413,7 +509413,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListColumn", "ApiReferenceLink": null, @@ -509430,7 +509430,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListContentType", "ApiReferenceLink": null, @@ -509447,7 +509447,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -509464,7 +509464,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -509481,7 +509481,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509498,7 +509498,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListItem", "ApiReferenceLink": null, @@ -509515,7 +509515,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509532,7 +509532,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -509549,7 +509549,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -509566,7 +509566,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListItemField", "ApiReferenceLink": null, @@ -509583,7 +509583,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509600,7 +509600,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListItemVersion", "ApiReferenceLink": null, @@ -509617,7 +509617,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListItemVersionField", "ApiReferenceLink": null, @@ -509634,7 +509634,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509651,7 +509651,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListOperation", "ApiReferenceLink": null, @@ -509668,7 +509668,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveListSubscription", "ApiReferenceLink": null, @@ -509685,7 +509685,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRoot", "ApiReferenceLink": null, @@ -509702,7 +509702,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootAnalytic", "ApiReferenceLink": null, @@ -509719,7 +509719,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -509736,7 +509736,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509753,7 +509753,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509770,7 +509770,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItem", "ApiReferenceLink": null, @@ -509787,7 +509787,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509804,7 +509804,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -509821,7 +509821,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -509838,7 +509838,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemField", "ApiReferenceLink": null, @@ -509855,7 +509855,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -509872,7 +509872,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemVersion", "ApiReferenceLink": null, @@ -509889,7 +509889,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -509906,7 +509906,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootPermission", "ApiReferenceLink": null, @@ -509923,7 +509923,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -509940,7 +509940,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootSubscription", "ApiReferenceLink": null, @@ -509957,7 +509957,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootThumbnail", "ApiReferenceLink": null, @@ -509974,7 +509974,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaDriveRootVersion", "ApiReferenceLink": null, @@ -509991,7 +509991,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClass", "ApiReferenceLink": null, @@ -510008,7 +510008,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignment", "ApiReferenceLink": null, @@ -510042,7 +510042,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -510059,7 +510059,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentDefault", "ApiReferenceLink": null, @@ -510093,7 +510093,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -510110,7 +510110,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -510127,7 +510127,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentRubric", "ApiReferenceLink": null, @@ -510161,7 +510161,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSetting", "ApiReferenceLink": null, @@ -510195,7 +510195,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -510212,7 +510212,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSettingGradingScheme", "ApiReferenceLink": null, @@ -510246,7 +510246,7 @@ "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -510263,7 +510263,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -510297,7 +510297,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -510314,7 +510314,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -510331,7 +510331,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -510348,7 +510348,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -510365,7 +510365,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassModule", "ApiReferenceLink": null, @@ -510399,7 +510399,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationClassModuleResource", "ApiReferenceLink": null, @@ -510433,7 +510433,7 @@ "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMe", "ApiReferenceLink": null, @@ -510448,7 +510448,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignment", "ApiReferenceLink": null, @@ -510465,7 +510465,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -510482,7 +510482,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -510499,7 +510499,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentRubric", "ApiReferenceLink": null, @@ -510516,7 +510516,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -510533,7 +510533,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -510550,7 +510550,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -510567,7 +510567,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -510584,7 +510584,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -510601,7 +510601,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -510618,7 +510618,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeRubric", "ApiReferenceLink": null, @@ -510652,7 +510652,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationMeUserMailboxSetting", "ApiReferenceLink": null, @@ -510667,7 +510667,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationRoot", "ApiReferenceLink": null, @@ -510682,7 +510682,7 @@ "OutputType": "IMicrosoftGraphEducationRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationSchool", "ApiReferenceLink": null, @@ -510699,7 +510699,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationSchoolAdministrativeUnit", "ApiReferenceLink": null, @@ -510716,7 +510716,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationSynchronizationProfile", "ApiReferenceLink": null, @@ -510733,7 +510733,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationSynchronizationProfileError", "ApiReferenceLink": null, @@ -510750,7 +510750,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationError" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationSynchronizationProfileStatus", "ApiReferenceLink": null, @@ -510767,7 +510767,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUser", "ApiReferenceLink": null, @@ -510784,7 +510784,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignment", "ApiReferenceLink": null, @@ -510801,7 +510801,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -510818,7 +510818,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -510835,7 +510835,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentRubric", "ApiReferenceLink": null, @@ -510852,7 +510852,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -510869,7 +510869,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -510886,7 +510886,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -510903,7 +510903,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -510920,7 +510920,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -510937,7 +510937,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -510954,7 +510954,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserMailboxSetting", "ApiReferenceLink": null, @@ -510971,7 +510971,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEducationUserRubric", "ApiReferenceLink": null, @@ -510988,7 +510988,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -511005,7 +511005,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignment", "ApiReferenceLink": null, @@ -511024,7 +511024,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentApproval", "ApiReferenceLink": null, @@ -511041,7 +511041,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentApprovalStep", "ApiReferenceLink": null, @@ -511058,7 +511058,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -511075,7 +511075,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", "ApiReferenceLink": null, @@ -511092,7 +511092,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionHandler" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -511109,7 +511109,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentRequest", "ApiReferenceLink": null, @@ -511128,7 +511128,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageCatalog", "ApiReferenceLink": null, @@ -511145,7 +511145,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", "ApiReferenceLink": null, @@ -511162,7 +511162,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", "ApiReferenceLink": null, @@ -511179,7 +511179,7 @@ "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageResourceRequest", "ApiReferenceLink": null, @@ -511196,7 +511196,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageResourceRoleScope", "ApiReferenceLink": null, @@ -511213,7 +511213,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaEntitlementManagementAssignmentRequest", "ApiReferenceLink": null, @@ -511232,7 +511232,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -511249,7 +511249,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementSetting", "ApiReferenceLink": null, @@ -511264,7 +511264,7 @@ "OutputType": "IMicrosoftGraphEntitlementManagementSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementSubject", "ApiReferenceLink": null, @@ -511281,7 +511281,7 @@ "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementSubjectByObjectId", "ApiReferenceLink": null, @@ -511298,7 +511298,7 @@ "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternal", "ApiReferenceLink": null, @@ -511313,7 +511313,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalAuthorizationSystem", "ApiReferenceLink": null, @@ -511330,7 +511330,7 @@ "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalAuthorizationSystemDataCollectionInfo", "ApiReferenceLink": null, @@ -511347,7 +511347,7 @@ "OutputType": "IMicrosoftGraphDataCollectionInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalConnection", "ApiReferenceLink": null, @@ -511381,7 +511381,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionGroup", "ApiReferenceLink": null, @@ -511415,7 +511415,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -511432,7 +511432,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -511449,7 +511449,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionOperation", "ApiReferenceLink": null, @@ -511466,7 +511466,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionQuota", "ApiReferenceLink": null, @@ -511483,7 +511483,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionQuota" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionSchema", "ApiReferenceLink": null, @@ -511517,7 +511517,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataConnector", "ApiReferenceLink": null, @@ -511534,7 +511534,7 @@ "OutputType": "IMicrosoftGraphIndustryDataConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataInboundFlow", "ApiReferenceLink": null, @@ -511551,7 +511551,7 @@ "OutputType": "IMicrosoftGraphIndustryDataInboundFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataOperation", "ApiReferenceLink": null, @@ -511568,7 +511568,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", "ApiReferenceLink": null, @@ -511585,7 +511585,7 @@ "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", "ApiReferenceLink": null, @@ -511602,7 +511602,7 @@ "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataReferenceDefinition", "ApiReferenceLink": null, @@ -511619,7 +511619,7 @@ "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataRoleGroup", "ApiReferenceLink": null, @@ -511636,7 +511636,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRoleGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataSourceSystem", "ApiReferenceLink": null, @@ -511653,7 +511653,7 @@ "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataYear", "ApiReferenceLink": null, @@ -511670,7 +511670,7 @@ "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancial", "ApiReferenceLink": null, @@ -511685,7 +511685,7 @@ "OutputType": "IMicrosoftGraphFinancials" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCountryRegion", "ApiReferenceLink": null, @@ -511702,7 +511702,7 @@ "OutputType": "IMicrosoftGraphCountryRegion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCurrency", "ApiReferenceLink": null, @@ -511719,7 +511719,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomer", "ApiReferenceLink": null, @@ -511736,7 +511736,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerCurrency", "ApiReferenceLink": null, @@ -511753,7 +511753,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPayment", "ApiReferenceLink": null, @@ -511770,7 +511770,7 @@ "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentCustomer", "ApiReferenceLink": null, @@ -511787,7 +511787,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency", "ApiReferenceLink": null, @@ -511804,7 +511804,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -511821,7 +511821,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod", "ApiReferenceLink": null, @@ -511838,7 +511838,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournal", "ApiReferenceLink": null, @@ -511855,7 +511855,7 @@ "OutputType": "IMicrosoftGraphCustomerPaymentJournal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", "ApiReferenceLink": null, @@ -511872,7 +511872,7 @@ "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", "ApiReferenceLink": null, @@ -511889,7 +511889,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", "ApiReferenceLink": null, @@ -511906,7 +511906,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -511923,7 +511923,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", "ApiReferenceLink": null, @@ -511940,7 +511940,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", "ApiReferenceLink": null, @@ -511957,7 +511957,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", "ApiReferenceLink": null, @@ -511974,7 +511974,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentMethod", "ApiReferenceLink": null, @@ -511995,7 +511995,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentTerm", "ApiReferenceLink": null, @@ -512016,7 +512016,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPicture", "ApiReferenceLink": null, @@ -512033,7 +512033,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerShipmentMethod", "ApiReferenceLink": null, @@ -512050,7 +512050,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyEmployee", "ApiReferenceLink": null, @@ -512067,7 +512067,7 @@ "OutputType": "IMicrosoftGraphEmployee" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyEmployeePicture", "ApiReferenceLink": null, @@ -512084,7 +512084,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyInformation", "ApiReferenceLink": null, @@ -512101,7 +512101,7 @@ "OutputType": "IMicrosoftGraphCompanyInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyItem", "ApiReferenceLink": null, @@ -512118,7 +512118,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyItemCategory", "ApiReferenceLink": null, @@ -512139,7 +512139,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyItemPicture", "ApiReferenceLink": null, @@ -512156,7 +512156,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyJournal", "ApiReferenceLink": null, @@ -512173,7 +512173,7 @@ "OutputType": "IMicrosoftGraphJournal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyJournalLine", "ApiReferenceLink": null, @@ -512194,7 +512194,7 @@ "OutputType": "IMicrosoftGraphJournalLine" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPaymentMethod", "ApiReferenceLink": null, @@ -512211,7 +512211,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPaymentTerm", "ApiReferenceLink": null, @@ -512228,7 +512228,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPicture", "ApiReferenceLink": null, @@ -512245,7 +512245,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoice", "ApiReferenceLink": null, @@ -512262,7 +512262,7 @@ "OutputType": "IMicrosoftGraphPurchaseInvoice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceCurrency", "ApiReferenceLink": null, @@ -512279,7 +512279,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLine", "ApiReferenceLink": null, @@ -512300,7 +512300,7 @@ "OutputType": "IMicrosoftGraphPurchaseInvoiceLine" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLineItem", "ApiReferenceLink": null, @@ -512321,7 +512321,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory", "ApiReferenceLink": null, @@ -512342,7 +512342,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -512363,7 +512363,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendor", "ApiReferenceLink": null, @@ -512380,7 +512380,7 @@ "OutputType": "IMicrosoftGraphVendor" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency", "ApiReferenceLink": null, @@ -512397,7 +512397,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod", "ApiReferenceLink": null, @@ -512414,7 +512414,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm", "ApiReferenceLink": null, @@ -512431,7 +512431,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", "ApiReferenceLink": null, @@ -512448,7 +512448,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemo", "ApiReferenceLink": null, @@ -512465,7 +512465,7 @@ "OutputType": "IMicrosoftGraphSalesCreditMemo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCurrency", "ApiReferenceLink": null, @@ -512482,7 +512482,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomer", "ApiReferenceLink": null, @@ -512499,7 +512499,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency", "ApiReferenceLink": null, @@ -512516,7 +512516,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod", "ApiReferenceLink": null, @@ -512533,7 +512533,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm", "ApiReferenceLink": null, @@ -512550,7 +512550,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", "ApiReferenceLink": null, @@ -512567,7 +512567,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod", "ApiReferenceLink": null, @@ -512584,7 +512584,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoLine", "ApiReferenceLink": null, @@ -512601,7 +512601,7 @@ "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoLineItem", "ApiReferenceLink": null, @@ -512618,7 +512618,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoLineItemCategory", "ApiReferenceLink": null, @@ -512635,7 +512635,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -512652,7 +512652,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoPaymentTerm", "ApiReferenceLink": null, @@ -512669,7 +512669,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine", "ApiReferenceLink": null, @@ -512686,7 +512686,7 @@ "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", "ApiReferenceLink": null, @@ -512703,7 +512703,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", "ApiReferenceLink": null, @@ -512720,7 +512720,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -512737,7 +512737,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoice", "ApiReferenceLink": null, @@ -512754,7 +512754,7 @@ "OutputType": "IMicrosoftGraphSalesInvoice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCurrency", "ApiReferenceLink": null, @@ -512771,7 +512771,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomer", "ApiReferenceLink": null, @@ -512788,7 +512788,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerCurrency", "ApiReferenceLink": null, @@ -512805,7 +512805,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod", "ApiReferenceLink": null, @@ -512822,7 +512822,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm", "ApiReferenceLink": null, @@ -512839,7 +512839,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerPicture", "ApiReferenceLink": null, @@ -512856,7 +512856,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod", "ApiReferenceLink": null, @@ -512873,7 +512873,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLine", "ApiReferenceLink": null, @@ -512894,7 +512894,7 @@ "OutputType": "IMicrosoftGraphSalesInvoiceLine" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLineItem", "ApiReferenceLink": null, @@ -512915,7 +512915,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLineItemCategory", "ApiReferenceLink": null, @@ -512936,7 +512936,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -512957,7 +512957,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoicePaymentTerm", "ApiReferenceLink": null, @@ -512974,7 +512974,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceShipmentMethod", "ApiReferenceLink": null, @@ -512991,7 +512991,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrder", "ApiReferenceLink": null, @@ -513008,7 +513008,7 @@ "OutputType": "IMicrosoftGraphSalesOrder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCurrency", "ApiReferenceLink": null, @@ -513025,7 +513025,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomer", "ApiReferenceLink": null, @@ -513042,7 +513042,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerCurrency", "ApiReferenceLink": null, @@ -513059,7 +513059,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod", "ApiReferenceLink": null, @@ -513076,7 +513076,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm", "ApiReferenceLink": null, @@ -513093,7 +513093,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerPicture", "ApiReferenceLink": null, @@ -513110,7 +513110,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod", "ApiReferenceLink": null, @@ -513127,7 +513127,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLine", "ApiReferenceLink": null, @@ -513148,7 +513148,7 @@ "OutputType": "IMicrosoftGraphSalesOrderLine" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLineItem", "ApiReferenceLink": null, @@ -513169,7 +513169,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLineItemCategory", "ApiReferenceLink": null, @@ -513190,7 +513190,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLineItemPicture", "ApiReferenceLink": null, @@ -513211,7 +513211,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderPaymentTerm", "ApiReferenceLink": null, @@ -513228,7 +513228,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuote", "ApiReferenceLink": null, @@ -513245,7 +513245,7 @@ "OutputType": "IMicrosoftGraphSalesQuote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCurrency", "ApiReferenceLink": null, @@ -513262,7 +513262,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomer", "ApiReferenceLink": null, @@ -513279,7 +513279,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerCurrency", "ApiReferenceLink": null, @@ -513296,7 +513296,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod", "ApiReferenceLink": null, @@ -513313,7 +513313,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm", "ApiReferenceLink": null, @@ -513330,7 +513330,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerPicture", "ApiReferenceLink": null, @@ -513347,7 +513347,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod", "ApiReferenceLink": null, @@ -513364,7 +513364,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLine", "ApiReferenceLink": null, @@ -513385,7 +513385,7 @@ "OutputType": "IMicrosoftGraphSalesQuoteLine" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLineItem", "ApiReferenceLink": null, @@ -513406,7 +513406,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLineItemCategory", "ApiReferenceLink": null, @@ -513427,7 +513427,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLineItemPicture", "ApiReferenceLink": null, @@ -513448,7 +513448,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuotePaymentTerm", "ApiReferenceLink": null, @@ -513465,7 +513465,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteShipmentMethod", "ApiReferenceLink": null, @@ -513482,7 +513482,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyShipmentMethod", "ApiReferenceLink": null, @@ -513499,7 +513499,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyTaxArea", "ApiReferenceLink": null, @@ -513516,7 +513516,7 @@ "OutputType": "IMicrosoftGraphTaxArea" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyTaxGroup", "ApiReferenceLink": null, @@ -513533,7 +513533,7 @@ "OutputType": "IMicrosoftGraphTaxGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyUnitOfMeasure", "ApiReferenceLink": null, @@ -513550,7 +513550,7 @@ "OutputType": "IMicrosoftGraphUnitOfMeasure" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendor", "ApiReferenceLink": null, @@ -513567,7 +513567,7 @@ "OutputType": "IMicrosoftGraphVendor" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendorCurrency", "ApiReferenceLink": null, @@ -513584,7 +513584,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendorPaymentMethod", "ApiReferenceLink": null, @@ -513601,7 +513601,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendorPaymentTerm", "ApiReferenceLink": null, @@ -513618,7 +513618,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendorPicture", "ApiReferenceLink": null, @@ -513635,7 +513635,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-beta", @@ -513669,7 +513669,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -513686,7 +513686,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-beta", @@ -513703,7 +513703,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupCalendarEvent", "ApiReferenceLink": null, @@ -513737,7 +513737,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupCalendarPermission", "ApiReferenceLink": null, @@ -513754,7 +513754,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupConversationThread", "ApiReferenceLink": null, @@ -513788,7 +513788,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupConversationThreadPost", "ApiReferenceLink": null, @@ -513805,7 +513805,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -513822,7 +513822,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -513839,7 +513839,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDrive", "ApiReferenceLink": null, @@ -513856,7 +513856,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -513873,7 +513873,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItem", "ApiReferenceLink": null, @@ -513890,7 +513890,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemAnalytic", "ApiReferenceLink": null, @@ -513907,7 +513907,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -513924,7 +513924,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -513941,7 +513941,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -513958,7 +513958,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItem", "ApiReferenceLink": null, @@ -513975,7 +513975,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -513992,7 +513992,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -514009,7 +514009,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -514026,7 +514026,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemField", "ApiReferenceLink": null, @@ -514043,7 +514043,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514060,7 +514060,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -514077,7 +514077,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -514094,7 +514094,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemPermission", "ApiReferenceLink": null, @@ -514111,7 +514111,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -514128,7 +514128,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -514145,7 +514145,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -514162,7 +514162,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemVersion", "ApiReferenceLink": null, @@ -514179,7 +514179,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514196,7 +514196,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveList", "ApiReferenceLink": null, @@ -514213,7 +514213,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListColumn", "ApiReferenceLink": null, @@ -514230,7 +514230,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListContentType", "ApiReferenceLink": null, @@ -514247,7 +514247,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -514264,7 +514264,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -514281,7 +514281,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514298,7 +514298,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItem", "ApiReferenceLink": null, @@ -514315,7 +514315,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514332,7 +514332,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -514349,7 +514349,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -514366,7 +514366,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemField", "ApiReferenceLink": null, @@ -514383,7 +514383,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514400,7 +514400,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -514417,7 +514417,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemVersionField", "ApiReferenceLink": null, @@ -514434,7 +514434,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514451,7 +514451,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListOperation", "ApiReferenceLink": null, @@ -514468,7 +514468,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListSubscription", "ApiReferenceLink": null, @@ -514485,7 +514485,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRoot", "ApiReferenceLink": null, @@ -514502,7 +514502,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootAnalytic", "ApiReferenceLink": null, @@ -514519,7 +514519,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -514536,7 +514536,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514553,7 +514553,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514570,7 +514570,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItem", "ApiReferenceLink": null, @@ -514587,7 +514587,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514604,7 +514604,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -514621,7 +514621,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -514638,7 +514638,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemField", "ApiReferenceLink": null, @@ -514655,7 +514655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -514672,7 +514672,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -514689,7 +514689,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -514706,7 +514706,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootPermission", "ApiReferenceLink": null, @@ -514723,7 +514723,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -514740,7 +514740,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -514757,7 +514757,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -514774,7 +514774,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootVersion", "ApiReferenceLink": null, @@ -514791,7 +514791,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupEndpoint", "ApiReferenceLink": null, @@ -514808,7 +514808,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupEvent", "ApiReferenceLink": null, @@ -514842,7 +514842,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -514859,7 +514859,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -514876,7 +514876,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupEventExtension", "ApiReferenceLink": null, @@ -514893,7 +514893,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -514910,7 +514910,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -514927,7 +514927,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupExtension", "ApiReferenceLink": null, @@ -514944,7 +514944,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-update?view=graph-rest-beta", @@ -514965,7 +514965,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -514982,7 +514982,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupOnenotePage", "ApiReferenceLink": null, @@ -514999,7 +514999,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaGroupOnenotePageContent", "ApiReferenceLink": null, @@ -515016,7 +515016,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupOnenoteSection", "ApiReferenceLink": null, @@ -515033,7 +515033,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -515050,7 +515050,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupPermissionGrant", "ApiReferenceLink": null, @@ -515067,7 +515067,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupPlanner", "ApiReferenceLink": null, @@ -515084,7 +515084,7 @@ "OutputType": "IMicrosoftGraphPlannerGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupPlannerPlanDetail", "ApiReferenceLink": null, @@ -515101,7 +515101,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSetting", "ApiReferenceLink": null, @@ -515135,7 +515135,7 @@ "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSite", "ApiReferenceLink": null, @@ -515152,7 +515152,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteAnalytic", "ApiReferenceLink": null, @@ -515169,7 +515169,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -515186,7 +515186,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -515203,7 +515203,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteColumn", "ApiReferenceLink": null, @@ -515220,7 +515220,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteContentType", "ApiReferenceLink": null, @@ -515237,7 +515237,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -515254,7 +515254,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -515271,7 +515271,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -515288,7 +515288,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -515309,7 +515309,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathInformationProtection", "ApiReferenceLink": null, @@ -515330,7 +515330,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -515351,7 +515351,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathRecycleBin", "ApiReferenceLink": null, @@ -515372,7 +515372,7 @@ "OutputType": "IMicrosoftGraphRecycleBin" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -515393,7 +515393,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtection", "ApiReferenceLink": null, @@ -515410,7 +515410,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -515427,7 +515427,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionPolicy", "ApiReferenceLink": null, @@ -515444,7 +515444,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -515461,7 +515461,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -515478,7 +515478,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -515495,7 +515495,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionSensitivityPolicySetting", "ApiReferenceLink": null, @@ -515512,7 +515512,7 @@ "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -515529,7 +515529,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -515546,7 +515546,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -515563,7 +515563,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteList", "ApiReferenceLink": null, @@ -515580,7 +515580,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListColumn", "ApiReferenceLink": null, @@ -515597,7 +515597,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListContentType", "ApiReferenceLink": null, @@ -515614,7 +515614,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -515631,7 +515631,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -515648,7 +515648,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -515665,7 +515665,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItem", "ApiReferenceLink": null, @@ -515682,7 +515682,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemActivity", "ApiReferenceLink": null, @@ -515699,7 +515699,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -515716,7 +515716,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -515733,7 +515733,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -515750,7 +515750,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemField", "ApiReferenceLink": null, @@ -515767,7 +515767,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -515784,7 +515784,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -515801,7 +515801,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemVersionField", "ApiReferenceLink": null, @@ -515818,7 +515818,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -515835,7 +515835,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListOperation", "ApiReferenceLink": null, @@ -515852,7 +515852,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListSubscription", "ApiReferenceLink": null, @@ -515869,7 +515869,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenote", "ApiReferenceLink": null, @@ -515886,7 +515886,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -515903,7 +515903,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -515920,7 +515920,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -515937,7 +515937,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -515954,7 +515954,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -515971,7 +515971,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -515988,7 +515988,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -516005,7 +516005,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -516022,7 +516022,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -516039,7 +516039,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -516056,7 +516056,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -516073,7 +516073,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -516090,7 +516090,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -516107,7 +516107,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -516124,7 +516124,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOperation", "ApiReferenceLink": null, @@ -516141,7 +516141,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePage", "ApiReferenceLink": null, @@ -516158,7 +516158,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -516175,7 +516175,7 @@ "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -516192,7 +516192,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -516209,7 +516209,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -516226,7 +516226,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -516243,7 +516243,7 @@ "OutputType": "IMicrosoftGraphVerticalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -516260,7 +516260,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -516277,7 +516277,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -516294,7 +516294,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -516311,7 +516311,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -516328,7 +516328,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -516345,7 +516345,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSitePermission", "ApiReferenceLink": null, @@ -516362,7 +516362,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBin", "ApiReferenceLink": null, @@ -516379,7 +516379,7 @@ "OutputType": "IMicrosoftGraphRecycleBin" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -516396,7 +516396,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinItem", "ApiReferenceLink": null, @@ -516413,7 +516413,7 @@ "OutputType": "IMicrosoftGraphRecycleBinItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -516430,7 +516430,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -516447,7 +516447,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -516464,7 +516464,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStore", "ApiReferenceLink": null, @@ -516481,7 +516481,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -516498,7 +516498,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -516515,7 +516515,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -516536,7 +516536,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -516557,7 +516557,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -516574,7 +516574,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -516591,7 +516591,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -516608,7 +516608,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -516625,7 +516625,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -516642,7 +516642,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -516659,7 +516659,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -516676,7 +516676,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -516697,7 +516697,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -516718,7 +516718,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -516735,7 +516735,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -516752,7 +516752,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -516773,7 +516773,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -516794,7 +516794,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -516811,7 +516811,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -516828,7 +516828,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -516845,7 +516845,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -516862,7 +516862,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -516879,7 +516879,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -516896,7 +516896,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -516913,7 +516913,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -516930,7 +516930,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -516947,7 +516947,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -516964,7 +516964,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannel", "ApiReferenceLink": null, @@ -516981,7 +516981,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMember", "ApiReferenceLink": null, @@ -516998,7 +516998,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -517015,7 +517015,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -517032,7 +517032,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -517049,7 +517049,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -517066,7 +517066,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -517083,7 +517083,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelTab", "ApiReferenceLink": null, @@ -517100,7 +517100,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamMember", "ApiReferenceLink": null, @@ -517117,7 +517117,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamOperation", "ApiReferenceLink": null, @@ -517134,7 +517134,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamOwnerMailboxSetting", "ApiReferenceLink": null, @@ -517151,7 +517151,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -517168,7 +517168,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPhoto", "ApiReferenceLink": null, @@ -517185,7 +517185,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannel", "ApiReferenceLink": null, @@ -517202,7 +517202,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -517219,7 +517219,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -517236,7 +517236,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -517253,7 +517253,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -517270,7 +517270,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -517287,7 +517287,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -517304,7 +517304,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -517321,7 +517321,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleDayNote", "ApiReferenceLink": null, @@ -517338,7 +517338,7 @@ "OutputType": "IMicrosoftGraphDayNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -517355,7 +517355,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -517372,7 +517372,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -517389,7 +517389,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -517406,7 +517406,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleShift", "ApiReferenceLink": null, @@ -517423,7 +517423,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -517440,7 +517440,7 @@ "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -517457,7 +517457,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -517474,7 +517474,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -517491,7 +517491,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -517508,7 +517508,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -517525,7 +517525,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamTag", "ApiReferenceLink": null, @@ -517542,7 +517542,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupTeamTagMember", "ApiReferenceLink": null, @@ -517559,7 +517559,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupThread", "ApiReferenceLink": null, @@ -517593,7 +517593,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupThreadPost", "ApiReferenceLink": null, @@ -517610,7 +517610,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupThreadPostExtension", "ApiReferenceLink": null, @@ -517627,7 +517627,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -517644,7 +517644,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityApiConnector", "ApiReferenceLink": null, @@ -517661,7 +517661,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityAuthenticationEventFlow", "ApiReferenceLink": null, @@ -517678,7 +517678,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventsFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -517695,7 +517695,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityAuthenticationEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -517712,7 +517712,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -517729,7 +517729,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlow", "ApiReferenceLink": null, @@ -517746,7 +517746,7 @@ "OutputType": "IMicrosoftGraphB2CIdentityUserFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlowLanguage", "ApiReferenceLink": null, @@ -517763,7 +517763,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -517780,7 +517780,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -517797,7 +517797,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -517814,7 +517814,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -517831,7 +517831,7 @@ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -517848,7 +517848,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -517865,7 +517865,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -517882,7 +517882,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowPostAttributeCollection", "ApiReferenceLink": null, @@ -517899,7 +517899,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowPostFederationSignup", "ApiReferenceLink": null, @@ -517916,7 +517916,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowPreTokenIssuance", "ApiReferenceLink": null, @@ -517933,7 +517933,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -517950,7 +517950,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -517967,7 +517967,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrength", "ApiReferenceLink": null, @@ -517982,7 +517982,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", "ApiReferenceLink": null, @@ -517999,7 +517999,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -518016,7 +518016,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyAllowedCombination", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-updateallowedcombinations?view=graph-rest-beta", @@ -518033,7 +518033,7 @@ "OutputType": "IMicrosoftGraphUpdateAllowedCombinationsResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -518050,7 +518050,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -518084,7 +518084,7 @@ "OutputType": "IMicrosoftGraphNamedLocation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -518126,7 +518126,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityContinuouAccessEvaluationPolicy", "ApiReferenceLink": null, @@ -518166,7 +518166,7 @@ "OutputType": "IMicrosoftGraphContinuousAccessEvaluationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -518183,7 +518183,7 @@ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecision", "ApiReferenceLink": null, @@ -518200,7 +518200,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInsight", "ApiReferenceLink": null, @@ -518217,7 +518217,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstance", "ApiReferenceLink": null, @@ -518234,7 +518234,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -518251,7 +518251,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", "ApiReferenceLink": null, @@ -518268,7 +518268,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -518285,7 +518285,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", "ApiReferenceLink": null, @@ -518302,7 +518302,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", "ApiReferenceLink": null, @@ -518319,7 +518319,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -518336,7 +518336,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -518353,7 +518353,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -518370,7 +518370,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -518387,7 +518387,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -518404,7 +518404,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInstance", "ApiReferenceLink": null, @@ -518421,7 +518421,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -518438,7 +518438,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -518455,7 +518455,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -518472,7 +518472,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInstance", "ApiReferenceLink": null, @@ -518489,7 +518489,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -518506,7 +518506,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -518523,7 +518523,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewPolicy", "ApiReferenceLink": null, @@ -518538,7 +518538,7 @@ "OutputType": "IMicrosoftGraphAccessReviewPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -518555,7 +518555,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -518572,7 +518572,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApproval", "ApiReferenceLink": null, @@ -518589,7 +518589,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", "ApiReferenceLink": null, @@ -518606,7 +518606,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -518623,7 +518623,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -518640,7 +518640,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -518657,7 +518657,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -518674,7 +518674,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -518691,7 +518691,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -518708,7 +518708,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -518725,7 +518725,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -518742,7 +518742,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -518759,7 +518759,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowSetting", "ApiReferenceLink": null, @@ -518774,7 +518774,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -518791,7 +518791,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -518808,7 +518808,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -518825,7 +518825,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -518842,7 +518842,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -518859,7 +518859,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -518876,7 +518876,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -518893,7 +518893,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -518910,7 +518910,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -518927,7 +518927,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalytic", "ApiReferenceLink": null, @@ -518942,7 +518942,7 @@ "OutputType": "IMicrosoftGraphPermissionsAnalyticsAggregation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAw", "ApiReferenceLink": null, @@ -518957,7 +518957,7 @@ "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAwFinding", "ApiReferenceLink": null, @@ -518974,7 +518974,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -518991,7 +518991,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAzure", "ApiReferenceLink": null, @@ -519006,7 +519006,7 @@ "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", "ApiReferenceLink": null, @@ -519023,7 +519023,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -519040,7 +519040,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticGcp", "ApiReferenceLink": null, @@ -519055,7 +519055,7 @@ "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", "ApiReferenceLink": null, @@ -519072,7 +519072,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -519089,7 +519089,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionManagement", "ApiReferenceLink": null, @@ -519104,7 +519104,7 @@ "OutputType": "IMicrosoftGraphPermissionsManagement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", "ApiReferenceLink": null, @@ -519121,7 +519121,7 @@ "OutputType": "IMicrosoftGraphPermissionsRequestChange" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", "ApiReferenceLink": null, @@ -519138,7 +519138,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", "ApiReferenceLink": null, @@ -519155,7 +519155,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccess", "ApiReferenceLink": null, @@ -519170,7 +519170,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroup", "ApiReferenceLink": null, @@ -519185,7 +519185,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -519202,7 +519202,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", "ApiReferenceLink": null, @@ -519219,7 +519219,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -519236,7 +519236,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -519253,7 +519253,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -519270,7 +519270,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -519287,7 +519287,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -519304,7 +519304,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -519321,7 +519321,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlert", "ApiReferenceLink": null, @@ -519342,7 +519342,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", "ApiReferenceLink": null, @@ -519359,7 +519359,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlertDefinition", "ApiReferenceLink": null, @@ -519376,7 +519376,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlertIncident", "ApiReferenceLink": null, @@ -519393,7 +519393,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlertOperation", "ApiReferenceLink": null, @@ -519410,7 +519410,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -519427,7 +519427,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -519448,7 +519448,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -519465,7 +519465,7 @@ "OutputType": "IMicrosoftGraphAgreementFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -519482,7 +519482,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -519499,7 +519499,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -519516,7 +519516,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityProvider", "ApiReferenceLink": null, @@ -519533,7 +519533,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityUserFlow", "ApiReferenceLink": null, @@ -519550,7 +519550,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -519567,7 +519567,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaInformationProtection", "ApiReferenceLink": null, @@ -519582,7 +519582,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -519599,7 +519599,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionPolicy", "ApiReferenceLink": null, @@ -519614,7 +519614,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -519631,7 +519631,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionSensitivityPolicySetting", "ApiReferenceLink": null, @@ -519646,7 +519646,7 @@ "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -519663,7 +519663,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -519680,7 +519680,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaInvitation", "ApiReferenceLink": null, @@ -519697,7 +519697,7 @@ "OutputType": "IMicrosoftGraphInvitation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaInvitationInvitedUserMailboxSetting", "ApiReferenceLink": null, @@ -519714,7 +519714,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-update?view=graph-rest-beta", @@ -519748,7 +519748,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfile", "ApiReferenceLink": null, @@ -519765,7 +519765,7 @@ "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileAgent", "ApiReferenceLink": null, @@ -519782,7 +519782,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileAgentGroup", "ApiReferenceLink": null, @@ -519799,7 +519799,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileAgentGroupAgent", "ApiReferenceLink": null, @@ -519816,7 +519816,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", "ApiReferenceLink": null, @@ -519833,7 +519833,7 @@ "OutputType": "IMicrosoftGraphPublishedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileConnector", "ApiReferenceLink": null, @@ -519850,7 +519850,7 @@ "OutputType": "IMicrosoftGraphConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileConnectorGroup", "ApiReferenceLink": null, @@ -519867,7 +519867,7 @@ "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfilePublishedResource", "ApiReferenceLink": null, @@ -519884,7 +519884,7 @@ "OutputType": "IMicrosoftGraphPublishedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganization", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-update?view=graph-rest-beta", @@ -519926,7 +519926,7 @@ "OutputType": "IMicrosoftGraphOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganizationBranding", "ApiReferenceLink": null, @@ -519960,7 +519960,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBranding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -519994,7 +519994,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganizationExtension", "ApiReferenceLink": null, @@ -520011,7 +520011,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganizationPartnerInformation", "ApiReferenceLink": null, @@ -520028,7 +520028,7 @@ "OutputType": "IMicrosoftGraphPartnerInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganizationSetting", "ApiReferenceLink": null, @@ -520045,7 +520045,7 @@ "OutputType": "IMicrosoftGraphOrganizationSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganizationSettingContactInsight", "ApiReferenceLink": null, @@ -520079,7 +520079,7 @@ "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganizationSettingItemInsight", "ApiReferenceLink": null, @@ -520113,7 +520113,7 @@ "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganizationSettingMicrosoftApplicationDataAccess", "ApiReferenceLink": null, @@ -520130,7 +520130,7 @@ "OutputType": "IMicrosoftGraphMicrosoftApplicationDataAccessSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaOrganizationSettingPersonInsight", "ApiReferenceLink": null, @@ -520164,7 +520164,7 @@ "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlace", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/place-update?view=graph-rest-beta", @@ -520181,7 +520181,7 @@ "OutputType": "IMicrosoftGraphPlace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -520198,7 +520198,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlaceAsRoomListWorkspace", "ApiReferenceLink": null, @@ -520215,7 +520215,7 @@ "OutputType": "IMicrosoftGraphWorkspace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlaceByPlaceId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/place-update?view=graph-rest-beta", @@ -520232,7 +520232,7 @@ "OutputType": "IMicrosoftGraphPlace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlanner", "ApiReferenceLink": null, @@ -520247,7 +520247,7 @@ "OutputType": "IMicrosoftGraphPlanner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerBucket", "ApiReferenceLink": null, @@ -520289,7 +520289,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerPlan", "ApiReferenceLink": null, @@ -520331,7 +520331,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerPlanDetail", "ApiReferenceLink": null, @@ -520373,7 +520373,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerRoster", "ApiReferenceLink": null, @@ -520390,7 +520390,7 @@ "OutputType": "IMicrosoftGraphPlannerRoster" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerRosterMember", "ApiReferenceLink": null, @@ -520407,7 +520407,7 @@ "OutputType": "IMicrosoftGraphPlannerRosterMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerTask", "ApiReferenceLink": null, @@ -520449,7 +520449,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerTaskAssignedToTaskBoardFormat", "ApiReferenceLink": null, @@ -520491,7 +520491,7 @@ "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerTaskBucketTaskBoardFormat", "ApiReferenceLink": null, @@ -520533,7 +520533,7 @@ "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerTaskDetail", "ApiReferenceLink": null, @@ -520575,7 +520575,7 @@ "OutputType": "IMicrosoftGraphPlannerTaskDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPlannerTaskProgressTaskBoardFormat", "ApiReferenceLink": null, @@ -520617,7 +520617,7 @@ "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAccessReviewPolicy", "ApiReferenceLink": null, @@ -520632,7 +520632,7 @@ "OutputType": "IMicrosoftGraphAccessReviewPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -520666,7 +520666,7 @@ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAdminConsentRequestPolicy", "ApiReferenceLink": null, @@ -520681,7 +520681,7 @@ "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -520715,7 +520715,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthenticationFlowPolicy", "ApiReferenceLink": null, @@ -520730,7 +520730,7 @@ "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthenticationMethodPolicy", "ApiReferenceLink": null, @@ -520745,7 +520745,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -520762,7 +520762,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -520796,7 +520796,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaPolicyAuthenticationStrengthPolicyAllowedCombination", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-updateallowedcombinations?view=graph-rest-beta", @@ -520830,7 +520830,7 @@ "OutputType": "IMicrosoftGraphUpdateAllowedCombinationsResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -520847,7 +520847,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthorizationPolicy", "ApiReferenceLink": null, @@ -520864,7 +520864,7 @@ "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", "ApiReferenceLink": null, @@ -520881,7 +520881,7 @@ "OutputType": "IMicrosoftGraphDefaultUserRoleOverride" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyB2CAuthenticationMethodPolicy", "ApiReferenceLink": null, @@ -520896,7 +520896,7 @@ "OutputType": "IMicrosoftGraphB2CAuthenticationMethodsPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -520930,7 +520930,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicy", "ApiReferenceLink": null, @@ -520945,7 +520945,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyDefault", "ApiReferenceLink": null, @@ -520960,7 +520960,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -520977,7 +520977,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyTemplate", "ApiReferenceLink": null, @@ -520992,7 +520992,7 @@ "OutputType": "IMicrosoftGraphPolicyTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", "ApiReferenceLink": null, @@ -521007,7 +521007,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", "ApiReferenceLink": null, @@ -521022,7 +521022,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyDefaultAppManagementPolicy", "ApiReferenceLink": null, @@ -521054,7 +521054,7 @@ "OutputType": "IMicrosoftGraphTenantAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyDirectoryRoleAccessReviewPolicy", "ApiReferenceLink": null, @@ -521069,7 +521069,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleAccessReviewPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyExternalIdentityPolicy", "ApiReferenceLink": null, @@ -521084,7 +521084,7 @@ "OutputType": "IMicrosoftGraphExternalIdentitiesPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -521101,7 +521101,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyFederatedTokenValidationPolicy", "ApiReferenceLink": null, @@ -521116,7 +521116,7 @@ "OutputType": "IMicrosoftGraphFederatedTokenValidationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -521150,7 +521150,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyIdentitySecurityDefaultEnforcementPolicy", "ApiReferenceLink": null, @@ -521182,7 +521182,7 @@ "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyMobileAppManagementPolicy", "ApiReferenceLink": null, @@ -521199,7 +521199,7 @@ "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyMobileDeviceManagementPolicy", "ApiReferenceLink": null, @@ -521216,7 +521216,7 @@ "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -521233,7 +521233,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -521250,7 +521250,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -521267,7 +521267,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -521284,7 +521284,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -521301,7 +521301,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -521318,7 +521318,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -521352,7 +521352,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyServicePrincipalCreationPolicy", "ApiReferenceLink": null, @@ -521369,7 +521369,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyServicePrincipalCreationPolicyExclude", "ApiReferenceLink": null, @@ -521386,7 +521386,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyServicePrincipalCreationPolicyInclude", "ApiReferenceLink": null, @@ -521403,7 +521403,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -521437,7 +521437,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -521471,7 +521471,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrint", "ApiReferenceLink": null, @@ -521486,7 +521486,7 @@ "OutputType": "IMicrosoftGraphPrint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintConnector", "ApiReferenceLink": null, @@ -521503,7 +521503,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintOperation", "ApiReferenceLink": null, @@ -521520,7 +521520,7 @@ "OutputType": "IMicrosoftGraphPrintOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinter", "ApiReferenceLink": null, @@ -521554,7 +521554,7 @@ "OutputType": "IMicrosoftGraphPrinter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterJob", "ApiReferenceLink": null, @@ -521596,7 +521596,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -521613,7 +521613,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterJobTask", "ApiReferenceLink": null, @@ -521630,7 +521630,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShare", "ApiReferenceLink": null, @@ -521647,7 +521647,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShareAllowedUserMailboxSetting", "ApiReferenceLink": null, @@ -521664,7 +521664,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShareJob", "ApiReferenceLink": null, @@ -521681,7 +521681,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShareJobDocument", "ApiReferenceLink": null, @@ -521698,7 +521698,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShareJobTask", "ApiReferenceLink": null, @@ -521715,7 +521715,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -521732,7 +521732,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintService", "ApiReferenceLink": null, @@ -521749,7 +521749,7 @@ "OutputType": "IMicrosoftGraphPrintService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintServiceEndpoint", "ApiReferenceLink": null, @@ -521766,7 +521766,7 @@ "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintShare", "ApiReferenceLink": null, @@ -521783,7 +521783,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintShareAllowedUserMailboxSetting", "ApiReferenceLink": null, @@ -521800,7 +521800,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintShareJob", "ApiReferenceLink": null, @@ -521817,7 +521817,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintShareJobDocument", "ApiReferenceLink": null, @@ -521834,7 +521834,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintShareJobTask", "ApiReferenceLink": null, @@ -521851,7 +521851,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintTaskDefinition", "ApiReferenceLink": null, @@ -521868,7 +521868,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -521885,7 +521885,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -521902,7 +521902,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting", "ApiReferenceLink": null, @@ -521919,7 +521919,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting", "ApiReferenceLink": null, @@ -521936,7 +521936,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -521953,7 +521953,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccess", "ApiReferenceLink": null, @@ -521970,7 +521970,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResource", "ApiReferenceLink": null, @@ -521987,7 +521987,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignment", "ApiReferenceLink": null, @@ -522004,7 +522004,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", "ApiReferenceLink": null, @@ -522021,7 +522021,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinition", "ApiReferenceLink": null, @@ -522038,7 +522038,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentRequestSubject", "ApiReferenceLink": null, @@ -522055,7 +522055,7 @@ "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -522072,7 +522072,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentSubject", "ApiReferenceLink": null, @@ -522089,7 +522089,7 @@ "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleDefinition", "ApiReferenceLink": null, @@ -522106,7 +522106,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleSetting", "ApiReferenceLink": null, @@ -522123,7 +522123,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinition", "ApiReferenceLink": null, @@ -522140,7 +522140,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignment", "ApiReferenceLink": null, @@ -522157,7 +522157,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentRequest", "ApiReferenceLink": null, @@ -522174,7 +522174,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentRequestRoleDefinition", "ApiReferenceLink": null, @@ -522191,7 +522191,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentRequestSubject", "ApiReferenceLink": null, @@ -522208,7 +522208,7 @@ "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -522225,7 +522225,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentSubject", "ApiReferenceLink": null, @@ -522242,7 +522242,7 @@ "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleDefinition", "ApiReferenceLink": null, @@ -522259,7 +522259,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleSetting", "ApiReferenceLink": null, @@ -522276,7 +522276,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleSettingRoleDefinition", "ApiReferenceLink": null, @@ -522293,7 +522293,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedApproval", "ApiReferenceLink": null, @@ -522310,7 +522310,7 @@ "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedApprovalRoleInfo", "ApiReferenceLink": null, @@ -522327,7 +522327,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedApprovalRoleInfoSetting", "ApiReferenceLink": null, @@ -522344,7 +522344,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedApprovalRoleInfoSummary", "ApiReferenceLink": null, @@ -522361,7 +522361,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedOperationEvent", "ApiReferenceLink": null, @@ -522378,7 +522378,7 @@ "OutputType": "IMicrosoftGraphPrivilegedOperationEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRole", "ApiReferenceLink": null, @@ -522395,7 +522395,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignment", "ApiReferenceLink": null, @@ -522412,7 +522412,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRequest", "ApiReferenceLink": null, @@ -522429,7 +522429,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRequestRoleInfo", "ApiReferenceLink": null, @@ -522446,7 +522446,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSetting", "ApiReferenceLink": null, @@ -522463,7 +522463,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSummary", "ApiReferenceLink": null, @@ -522480,7 +522480,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRoleInfo", "ApiReferenceLink": null, @@ -522497,7 +522497,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRoleInfoSetting", "ApiReferenceLink": null, @@ -522514,7 +522514,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRoleInfoSummary", "ApiReferenceLink": null, @@ -522531,7 +522531,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleSetting", "ApiReferenceLink": null, @@ -522548,7 +522548,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleSummary", "ApiReferenceLink": null, @@ -522565,7 +522565,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaProgram", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-update?view=graph-rest-beta", @@ -522582,7 +522582,7 @@ "OutputType": "IMicrosoftGraphProgram" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaProgramControl", "ApiReferenceLink": null, @@ -522607,7 +522607,7 @@ "OutputType": "IMicrosoftGraphProgramControl" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaProgramControlProgram", "ApiReferenceLink": null, @@ -522628,7 +522628,7 @@ "OutputType": "IMicrosoftGraphProgram" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaProgramControlType", "ApiReferenceLink": null, @@ -522645,7 +522645,7 @@ "OutputType": "IMicrosoftGraphProgramControlType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -522662,7 +522662,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBilling", "ApiReferenceLink": null, @@ -522677,7 +522677,7 @@ "OutputType": "IMicrosoftGraphPartnersBilling" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -522694,7 +522694,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -522711,7 +522711,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingReconciliation", "ApiReferenceLink": null, @@ -522726,7 +522726,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingReconciliation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingReconciliationBilled", "ApiReferenceLink": null, @@ -522741,7 +522741,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingUsage", "ApiReferenceLink": null, @@ -522756,7 +522756,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingUsageBilled", "ApiReferenceLink": null, @@ -522771,7 +522771,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingUsageUnbilled", "ApiReferenceLink": null, @@ -522786,7 +522786,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportSlaAzureAdAuthentication", "ApiReferenceLink": null, @@ -522801,7 +522801,7 @@ "OutputType": "IMicrosoftGraphAzureAdAuthentication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportUserInsightDaily", "ApiReferenceLink": null, @@ -522816,7 +522816,7 @@ "OutputType": "IMicrosoftGraphDailyUserInsightMetricsRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaReportUserInsightMonthly", "ApiReferenceLink": null, @@ -522831,7 +522831,7 @@ "OutputType": "IMicrosoftGraphMonthlyUserInsightMetricsRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRiskDetection", "ApiReferenceLink": null, @@ -522848,7 +522848,7 @@ "OutputType": "IMicrosoftGraphRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRiskyServicePrincipal", "ApiReferenceLink": null, @@ -522865,7 +522865,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -522882,7 +522882,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRiskyUser", "ApiReferenceLink": null, @@ -522899,7 +522899,7 @@ "OutputType": "IMicrosoftGraphRiskyUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRiskyUserHistory", "ApiReferenceLink": null, @@ -522916,7 +522916,7 @@ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagement", "ApiReferenceLink": null, @@ -522948,7 +522948,7 @@ "OutputType": "IMicrosoftGraphRoleManagement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPc", "ApiReferenceLink": null, @@ -522963,7 +522963,7 @@ "OutputType": "IMicrosoftGraphRbacApplicationMultiple" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcResourceNamespace", "ApiReferenceLink": null, @@ -522980,7 +522980,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -522997,7 +522997,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -523014,7 +523014,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcRoleAssignment", "ApiReferenceLink": null, @@ -523031,7 +523031,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -523048,7 +523048,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcRoleDefinition", "ApiReferenceLink": null, @@ -523106,7 +523106,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -523123,7 +523123,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagement", "ApiReferenceLink": null, @@ -523155,7 +523155,7 @@ "OutputType": "IMicrosoftGraphRbacApplicationMultiple" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementResourceNamespace", "ApiReferenceLink": null, @@ -523172,7 +523172,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -523189,7 +523189,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -523206,7 +523206,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -523223,7 +523223,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -523240,7 +523240,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -523298,7 +523298,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -523315,7 +523315,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectory", "ApiReferenceLink": null, @@ -523330,7 +523330,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -523347,7 +523347,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -523364,7 +523364,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -523381,7 +523381,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -523398,7 +523398,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentApproval", "ApiReferenceLink": null, @@ -523415,7 +523415,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -523432,7 +523432,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -523449,7 +523449,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -523466,7 +523466,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -523483,7 +523483,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -523500,7 +523500,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -523534,7 +523534,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -523551,7 +523551,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -523568,7 +523568,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -523585,7 +523585,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -523602,7 +523602,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -523619,7 +523619,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -523636,7 +523636,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseApp", "ApiReferenceLink": null, @@ -523653,7 +523653,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppResourceNamespace", "ApiReferenceLink": null, @@ -523670,7 +523670,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -523687,7 +523687,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -523704,7 +523704,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignment", "ApiReferenceLink": null, @@ -523721,7 +523721,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", "ApiReferenceLink": null, @@ -523738,7 +523738,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -523755,7 +523755,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -523772,7 +523772,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -523789,7 +523789,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -523806,7 +523806,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -523823,7 +523823,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleDefinition", "ApiReferenceLink": null, @@ -523840,7 +523840,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -523857,7 +523857,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -523874,7 +523874,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -523891,7 +523891,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -523908,7 +523908,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -523925,7 +523925,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -523942,7 +523942,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagement", "ApiReferenceLink": null, @@ -523957,7 +523957,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -523974,7 +523974,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -523991,7 +523991,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -524008,7 +524008,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -524025,7 +524025,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", "ApiReferenceLink": null, @@ -524042,7 +524042,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -524059,7 +524059,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -524076,7 +524076,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -524093,7 +524093,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -524110,7 +524110,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -524127,7 +524127,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -524144,7 +524144,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -524161,7 +524161,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -524178,7 +524178,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -524195,7 +524195,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -524212,7 +524212,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -524229,7 +524229,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -524246,7 +524246,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchange", "ApiReferenceLink": null, @@ -524261,7 +524261,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeCustomAppScope", "ApiReferenceLink": null, @@ -524278,7 +524278,7 @@ "OutputType": "IMicrosoftGraphCustomAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeResourceNamespace", "ApiReferenceLink": null, @@ -524295,7 +524295,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -524312,7 +524312,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -524329,7 +524329,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeRoleAssignment", "ApiReferenceLink": null, @@ -524346,7 +524346,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -524363,7 +524363,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeRoleDefinition", "ApiReferenceLink": null, @@ -524380,7 +524380,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -524397,7 +524397,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -524414,7 +524414,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -524431,7 +524431,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-update?view=graph-rest-beta", @@ -524465,7 +524465,7 @@ "OutputType": "IMicrosoftGraphSchemaExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSearchAcronym", "ApiReferenceLink": null, @@ -524499,7 +524499,7 @@ "OutputType": "IMicrosoftGraphSearchAcronym" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSearchBookmark", "ApiReferenceLink": null, @@ -524533,7 +524533,7 @@ "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSearchEntity", "ApiReferenceLink": null, @@ -524548,7 +524548,7 @@ "OutputType": "IMicrosoftGraphSearchEntity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSearchQna", "ApiReferenceLink": null, @@ -524565,7 +524565,7 @@ "OutputType": "IMicrosoftGraphSearchQna" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAction", "ApiReferenceLink": null, @@ -524582,7 +524582,7 @@ "OutputType": "IMicrosoftGraphSecurityAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAlert", "ApiReferenceLink": null, @@ -524599,7 +524599,7 @@ "OutputType": "IMicrosoftGraphAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaSecurityAlertMultiple", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/alert-updatealerts?view=graph-rest-beta", @@ -524614,7 +524614,7 @@ "OutputType": "IMicrosoftGraphAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAlertV2", "ApiReferenceLink": null, @@ -524631,7 +524631,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -524648,7 +524648,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -524665,7 +524665,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -524682,7 +524682,7 @@ "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -524699,7 +524699,7 @@ "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -524716,7 +524716,7 @@ "OutputType": "IMicrosoftGraphLandingPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -524733,7 +524733,7 @@ "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -524750,7 +524750,7 @@ "OutputType": "IMicrosoftGraphLoginPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -524767,7 +524767,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -524784,7 +524784,7 @@ "OutputType": "IMicrosoftGraphPayload" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -524801,7 +524801,7 @@ "OutputType": "IMicrosoftGraphTraining" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationTrainingCampaign", "ApiReferenceLink": null, @@ -524818,7 +524818,7 @@ "OutputType": "IMicrosoftGraphTrainingCampaign" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -524835,7 +524835,7 @@ "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAuditLog", "ApiReferenceLink": null, @@ -524850,7 +524850,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditCoreRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAuditLogQuery", "ApiReferenceLink": null, @@ -524867,7 +524867,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditLogQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityAuditLogQueryRecord", "ApiReferenceLink": null, @@ -524884,7 +524884,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditLogRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCase", "ApiReferenceLink": null, @@ -524899,7 +524899,7 @@ "OutputType": "IMicrosoftGraphSecurityCasesRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -524933,7 +524933,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -524950,7 +524950,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-updateindex?view=graph-rest-beta", @@ -524986,7 +524986,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -525003,7 +525003,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -525020,7 +525020,7 @@ "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -525037,7 +525037,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -525071,7 +525071,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -525088,7 +525088,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -525105,7 +525105,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -525122,7 +525122,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-updateindex?view=graph-rest-beta", @@ -525158,7 +525158,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -525175,7 +525175,7 @@ "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -525192,7 +525192,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", "ApiReferenceLink": null, @@ -525209,7 +525209,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -525243,7 +525243,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -525277,7 +525277,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -525294,7 +525294,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSetting", "ApiReferenceLink": null, @@ -525311,7 +525311,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -525345,7 +525345,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCloudAppSecurityProfile", "ApiReferenceLink": null, @@ -525362,7 +525362,7 @@ "OutputType": "IMicrosoftGraphCloudAppSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCollaboration", "ApiReferenceLink": null, @@ -525377,7 +525377,7 @@ "OutputType": "IMicrosoftGraphSecurityCollaborationRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityCollaborationAnalyzedEmail", "ApiReferenceLink": null, @@ -525394,7 +525394,7 @@ "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityDomainSecurityProfile", "ApiReferenceLink": null, @@ -525411,7 +525411,7 @@ "OutputType": "IMicrosoftGraphDomainSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityFileSecurityProfile", "ApiReferenceLink": null, @@ -525428,7 +525428,7 @@ "OutputType": "IMicrosoftGraphFileSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityHostSecurityProfile", "ApiReferenceLink": null, @@ -525445,7 +525445,7 @@ "OutputType": "IMicrosoftGraphHostSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityIdentity", "ApiReferenceLink": null, @@ -525460,7 +525460,7 @@ "OutputType": "IMicrosoftGraphSecurityIdentityContainer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityIdentityHealthIssue", "ApiReferenceLink": null, @@ -525477,7 +525477,7 @@ "OutputType": "IMicrosoftGraphSecurityHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityIncident", "ApiReferenceLink": null, @@ -525494,7 +525494,7 @@ "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityInformationProtection", "ApiReferenceLink": null, @@ -525509,7 +525509,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityInformationProtectionLabelPolicySetting", "ApiReferenceLink": null, @@ -525524,7 +525524,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -525541,7 +525541,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityInformationProtectionSensitivityLabelParent", "ApiReferenceLink": null, @@ -525558,7 +525558,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityIPSecurityProfile", "ApiReferenceLink": null, @@ -525575,7 +525575,7 @@ "OutputType": "IMicrosoftGraphIPSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabel", "ApiReferenceLink": null, @@ -525590,7 +525590,7 @@ "OutputType": "IMicrosoftGraphSecurityLabelsRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelAuthority", "ApiReferenceLink": null, @@ -525607,7 +525607,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelCategory", "ApiReferenceLink": null, @@ -525624,7 +525624,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -525641,7 +525641,7 @@ "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelCitation", "ApiReferenceLink": null, @@ -525658,7 +525658,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelDepartment", "ApiReferenceLink": null, @@ -525675,7 +525675,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -525692,7 +525692,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -525709,7 +525709,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelRetentionLabelDescriptor", "ApiReferenceLink": null, @@ -525726,7 +525726,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -525743,7 +525743,7 @@ "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityProviderTenantSetting", "ApiReferenceLink": null, @@ -525760,7 +525760,7 @@ "OutputType": "IMicrosoftGraphProviderTenantSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityRule", "ApiReferenceLink": null, @@ -525775,7 +525775,7 @@ "OutputType": "IMicrosoftGraphSecurityRulesRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityRuleDetectionRule", "ApiReferenceLink": null, @@ -525792,7 +525792,7 @@ "OutputType": "IMicrosoftGraphSecurityDetectionRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecuritySecureScore", "ApiReferenceLink": null, @@ -525809,7 +525809,7 @@ "OutputType": "IMicrosoftGraphSecureScore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -525826,7 +525826,7 @@ "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -525843,7 +525843,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecuritySubjectRightsRequestApproverMailboxSetting", "ApiReferenceLink": null, @@ -525860,7 +525860,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecuritySubjectRightsRequestCollaboratorMailboxSetting", "ApiReferenceLink": null, @@ -525877,7 +525877,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -525894,7 +525894,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligence", "ApiReferenceLink": null, @@ -525909,7 +525909,7 @@ "OutputType": "IMicrosoftGraphSecurityThreatIntelligence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -525926,7 +525926,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -525943,7 +525943,7 @@ "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -525960,7 +525960,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -525977,7 +525977,7 @@ "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -525994,7 +525994,7 @@ "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -526011,7 +526011,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -526028,7 +526028,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostReputation", "ApiReferenceLink": null, @@ -526045,7 +526045,7 @@ "OutputType": "IMicrosoftGraphSecurityHostReputation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -526062,7 +526062,7 @@ "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -526079,7 +526079,7 @@ "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -526096,7 +526096,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -526113,7 +526113,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -526130,7 +526130,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -526147,7 +526147,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -526164,7 +526164,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -526181,7 +526181,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -526198,7 +526198,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -526215,7 +526215,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -526232,7 +526232,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmission", "ApiReferenceLink": null, @@ -526247,7 +526247,7 @@ "OutputType": "IMicrosoftGraphSecurityThreatSubmissionRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmissionEmailThreat", "ApiReferenceLink": null, @@ -526264,7 +526264,7 @@ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", "ApiReferenceLink": null, @@ -526281,7 +526281,7 @@ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmissionFileThreat", "ApiReferenceLink": null, @@ -526298,7 +526298,7 @@ "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmissionUrlThreat", "ApiReferenceLink": null, @@ -526315,7 +526315,7 @@ "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityTiIndicator", "ApiReferenceLink": null, @@ -526332,7 +526332,7 @@ "OutputType": "IMicrosoftGraphTiIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaSecurityTiIndicatorMultiple", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-updatetiindicators?view=graph-rest-beta", @@ -526347,7 +526347,7 @@ "OutputType": "IMicrosoftGraphTiIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityTrigger", "ApiReferenceLink": null, @@ -526362,7 +526362,7 @@ "OutputType": "IMicrosoftGraphSecurityTriggersRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -526379,7 +526379,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityTriggerType", "ApiReferenceLink": null, @@ -526394,7 +526394,7 @@ "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -526411,7 +526411,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSecurityUserSecurityProfile", "ApiReferenceLink": null, @@ -526428,7 +526428,7 @@ "OutputType": "IMicrosoftGraphUserSecurityProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -526445,7 +526445,7 @@ "OutputType": "IMicrosoftGraphServiceHealth" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -526462,7 +526462,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -526479,7 +526479,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -526496,7 +526496,7 @@ "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -526513,7 +526513,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-beta", @@ -526555,7 +526555,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -526572,7 +526572,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -526589,7 +526589,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-beta", @@ -526606,7 +526606,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -526623,7 +526623,7 @@ "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -526640,7 +526640,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalLicenseDetail", "ApiReferenceLink": null, @@ -526657,7 +526657,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaServicePrincipalPasswordSingleSignOnCredential", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-updatepasswordsinglesignoncredentials?view=graph-rest-beta", @@ -526699,7 +526699,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration", "ApiReferenceLink": null, @@ -526716,7 +526716,7 @@ "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -526733,7 +526733,7 @@ "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -526750,7 +526750,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -526767,7 +526767,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -526784,7 +526784,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationJobSchema", "ApiReferenceLink": null, @@ -526801,7 +526801,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -526818,7 +526818,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -526835,7 +526835,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -526852,7 +526852,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -526869,7 +526869,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -526886,7 +526886,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -526903,7 +526903,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareList", "ApiReferenceLink": null, @@ -526920,7 +526920,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListColumn", "ApiReferenceLink": null, @@ -526937,7 +526937,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListContentType", "ApiReferenceLink": null, @@ -526954,7 +526954,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListContentTypeColumn", "ApiReferenceLink": null, @@ -526971,7 +526971,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -526988,7 +526988,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -527005,7 +527005,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListItem", "ApiReferenceLink": null, @@ -527026,7 +527026,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -527047,7 +527047,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -527068,7 +527068,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -527089,7 +527089,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListItemField", "ApiReferenceLink": null, @@ -527110,7 +527110,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -527131,7 +527131,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListItemVersion", "ApiReferenceLink": null, @@ -527152,7 +527152,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListItemVersionField", "ApiReferenceLink": null, @@ -527173,7 +527173,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -527190,7 +527190,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListOperation", "ApiReferenceLink": null, @@ -527207,7 +527207,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareListSubscription", "ApiReferenceLink": null, @@ -527224,7 +527224,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSharePermission", "ApiReferenceLink": null, @@ -527241,7 +527241,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": null, @@ -527258,7 +527258,7 @@ "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSite", "ApiReferenceLink": null, @@ -527275,7 +527275,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteAnalytic", "ApiReferenceLink": null, @@ -527292,7 +527292,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -527309,7 +527309,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -527326,7 +527326,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteColumn", "ApiReferenceLink": null, @@ -527360,7 +527360,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteContentType", "ApiReferenceLink": null, @@ -527394,7 +527394,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteContentTypeColumn", "ApiReferenceLink": null, @@ -527428,7 +527428,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -527445,7 +527445,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -527466,7 +527466,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -527487,7 +527487,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -527508,7 +527508,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteList", "ApiReferenceLink": null, @@ -527525,7 +527525,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListColumn", "ApiReferenceLink": null, @@ -527559,7 +527559,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListContentType", "ApiReferenceLink": null, @@ -527593,7 +527593,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -527627,7 +527627,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -527644,7 +527644,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -527661,7 +527661,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListItem", "ApiReferenceLink": null, @@ -527678,7 +527678,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListItemActivity", "ApiReferenceLink": null, @@ -527695,7 +527695,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -527712,7 +527712,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -527729,7 +527729,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -527746,7 +527746,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListItemField", "ApiReferenceLink": null, @@ -527763,7 +527763,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -527780,7 +527780,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListItemVersion", "ApiReferenceLink": null, @@ -527797,7 +527797,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListItemVersionField", "ApiReferenceLink": null, @@ -527814,7 +527814,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -527831,7 +527831,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListOperation", "ApiReferenceLink": null, @@ -527848,7 +527848,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteListSubscription", "ApiReferenceLink": null, @@ -527865,7 +527865,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -527882,7 +527882,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaSiteOnenoteNotebookSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -527899,7 +527899,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaSiteOnenoteNotebookSectionPageContent", "ApiReferenceLink": null, @@ -527916,7 +527916,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteOnenotePage", "ApiReferenceLink": null, @@ -527933,7 +527933,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaSiteOnenotePageContent", "ApiReferenceLink": null, @@ -527950,7 +527950,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteOnenoteSection", "ApiReferenceLink": null, @@ -527967,7 +527967,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -527984,7 +527984,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaSiteOnenoteSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -528001,7 +528001,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaSiteOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -528018,7 +528018,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteOperation", "ApiReferenceLink": null, @@ -528035,7 +528035,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePage", "ApiReferenceLink": null, @@ -528052,7 +528052,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -528069,7 +528069,7 @@ "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -528086,7 +528086,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -528103,7 +528103,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -528120,7 +528120,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -528137,7 +528137,7 @@ "OutputType": "IMicrosoftGraphVerticalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -528154,7 +528154,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -528171,7 +528171,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -528188,7 +528188,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -528205,7 +528205,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -528222,7 +528222,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -528239,7 +528239,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSitePermission", "ApiReferenceLink": null, @@ -528256,7 +528256,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStore", "ApiReferenceLink": null, @@ -528273,7 +528273,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroup", "ApiReferenceLink": null, @@ -528290,7 +528290,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -528307,7 +528307,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -528328,7 +528328,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -528349,7 +528349,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -528366,7 +528366,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -528383,7 +528383,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -528400,7 +528400,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -528417,7 +528417,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -528434,7 +528434,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -528451,7 +528451,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSet", "ApiReferenceLink": null, @@ -528468,7 +528468,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -528489,7 +528489,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -528510,7 +528510,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -528527,7 +528527,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -528544,7 +528544,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -528565,7 +528565,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -528586,7 +528586,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -528603,7 +528603,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -528620,7 +528620,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -528637,7 +528637,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -528654,7 +528654,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -528671,7 +528671,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -528688,7 +528688,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -528705,7 +528705,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -528722,7 +528722,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -528739,7 +528739,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -528756,7 +528756,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSubscribedSku", "ApiReferenceLink": null, @@ -528773,7 +528773,7 @@ "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-update?view=graph-rest-beta", @@ -528790,7 +528790,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-update?view=graph-rest-beta", @@ -528840,7 +528840,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamChannel", "ApiReferenceLink": null, @@ -528890,7 +528890,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamChannelMember", "ApiReferenceLink": null, @@ -528940,7 +528940,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamChannelMessage", "ApiReferenceLink": null, @@ -528957,7 +528957,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamChannelMessageReply", "ApiReferenceLink": null, @@ -528974,7 +528974,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -528991,7 +528991,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -529008,7 +529008,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamChannelTab", "ApiReferenceLink": null, @@ -529090,7 +529090,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaTeamInstalledApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-beta", @@ -529204,7 +529204,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamMember", "ApiReferenceLink": null, @@ -529254,7 +529254,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamOperation", "ApiReferenceLink": null, @@ -529271,7 +529271,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamOwnerMailboxSetting", "ApiReferenceLink": null, @@ -529288,7 +529288,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamPermissionGrant", "ApiReferenceLink": null, @@ -529305,7 +529305,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamPhoto", "ApiReferenceLink": null, @@ -529322,7 +529322,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannel", "ApiReferenceLink": null, @@ -529339,7 +529339,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -529356,7 +529356,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -529373,7 +529373,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -529390,7 +529390,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -529407,7 +529407,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -529424,7 +529424,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -529441,7 +529441,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleDayNote", "ApiReferenceLink": null, @@ -529458,7 +529458,7 @@ "OutputType": "IMicrosoftGraphDayNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -529475,7 +529475,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -529492,7 +529492,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -529509,7 +529509,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -529526,7 +529526,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleShift", "ApiReferenceLink": null, @@ -529543,7 +529543,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -529577,7 +529577,7 @@ "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -529594,7 +529594,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -529611,7 +529611,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -529628,7 +529628,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -529645,7 +529645,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -529662,7 +529662,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamTag", "ApiReferenceLink": null, @@ -529696,7 +529696,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamTagMember", "ApiReferenceLink": null, @@ -529713,7 +529713,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamwork", "ApiReferenceLink": null, @@ -529728,7 +529728,7 @@ "OutputType": "IMicrosoftGraphTeamwork" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedChat", "ApiReferenceLink": null, @@ -529745,7 +529745,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -529762,7 +529762,7 @@ "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -529779,7 +529779,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -529796,7 +529796,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -529813,7 +529813,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -529830,7 +529830,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -529847,7 +529847,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -529864,7 +529864,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -529881,7 +529881,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -529898,7 +529898,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDevice", "ApiReferenceLink": null, @@ -529915,7 +529915,7 @@ "OutputType": "IMicrosoftGraphTeamworkDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeviceActivity", "ApiReferenceLink": null, @@ -529932,7 +529932,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeviceConfiguration", "ApiReferenceLink": null, @@ -529949,7 +529949,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeviceHealth", "ApiReferenceLink": null, @@ -529966,7 +529966,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceHealth" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeviceOperation", "ApiReferenceLink": null, @@ -529983,7 +529983,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaTeamworkDeviceSoftware", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-updatesoftware?view=graph-rest-beta", @@ -530000,7 +530000,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkTeamAppSetting", "ApiReferenceLink": null, @@ -530015,7 +530015,7 @@ "OutputType": "IMicrosoftGraphTeamsAppSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkTeamTemplate", "ApiReferenceLink": null, @@ -530032,7 +530032,7 @@ "OutputType": "IMicrosoftGraphTeamTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkTeamTemplateDefinition", "ApiReferenceLink": null, @@ -530049,7 +530049,7 @@ "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -530066,7 +530066,7 @@ "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -530083,7 +530083,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -530100,7 +530100,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -530117,7 +530117,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -530134,7 +530134,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -530151,7 +530151,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -530168,7 +530168,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenant", "ApiReferenceLink": null, @@ -530185,7 +530185,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", "ApiReferenceLink": null, @@ -530202,7 +530202,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAlert", "ApiReferenceLink": null, @@ -530219,7 +530219,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAlertLog", "ApiReferenceLink": null, @@ -530236,7 +530236,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAlertRule", "ApiReferenceLink": null, @@ -530253,7 +530253,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", "ApiReferenceLink": null, @@ -530270,7 +530270,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantApiNotification", "ApiReferenceLink": null, @@ -530287,7 +530287,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAppPerformance", "ApiReferenceLink": null, @@ -530304,7 +530304,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAuditEvent", "ApiReferenceLink": null, @@ -530321,7 +530321,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCloudPcConnection", "ApiReferenceLink": null, @@ -530338,7 +530338,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCloudPcDevice", "ApiReferenceLink": null, @@ -530355,7 +530355,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCloudPcOverview", "ApiReferenceLink": null, @@ -530372,7 +530372,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", "ApiReferenceLink": null, @@ -530389,7 +530389,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", "ApiReferenceLink": null, @@ -530406,7 +530406,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCustomizedInformation", "ApiReferenceLink": null, @@ -530423,7 +530423,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantDetailedInformation", "ApiReferenceLink": null, @@ -530440,7 +530440,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", "ApiReferenceLink": null, @@ -530457,7 +530457,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -530474,7 +530474,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", "ApiReferenceLink": null, @@ -530491,7 +530491,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantEmailNotification", "ApiReferenceLink": null, @@ -530508,7 +530508,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantGroup", "ApiReferenceLink": null, @@ -530525,7 +530525,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", "ApiReferenceLink": null, @@ -530542,7 +530542,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", "ApiReferenceLink": null, @@ -530559,7 +530559,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementAction", "ApiReferenceLink": null, @@ -530576,7 +530576,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", "ApiReferenceLink": null, @@ -530593,7 +530593,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementIntent", "ApiReferenceLink": null, @@ -530610,7 +530610,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplate", "ApiReferenceLink": null, @@ -530627,7 +530627,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", "ApiReferenceLink": null, @@ -530644,7 +530644,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", "ApiReferenceLink": null, @@ -530661,7 +530661,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", "ApiReferenceLink": null, @@ -530678,7 +530678,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", "ApiReferenceLink": null, @@ -530695,7 +530695,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", "ApiReferenceLink": null, @@ -530712,7 +530712,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", "ApiReferenceLink": null, @@ -530729,7 +530729,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantMyRole", "ApiReferenceLink": null, @@ -530746,7 +530746,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsMyRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantTag", "ApiReferenceLink": null, @@ -530763,7 +530763,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", "ApiReferenceLink": null, @@ -530780,7 +530780,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", "ApiReferenceLink": null, @@ -530797,7 +530797,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", "ApiReferenceLink": null, @@ -530814,7 +530814,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipMultiTenantOrganizationJoinRequest", "ApiReferenceLink": null, @@ -530829,7 +530829,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -530846,7 +530846,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTrustFramework", "ApiReferenceLink": null, @@ -530861,7 +530861,7 @@ "OutputType": "IMicrosoftGraphTrustFramework" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTrustFrameworkKeySet", "ApiReferenceLink": null, @@ -530878,7 +530878,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkKeySet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaTrustFrameworkPolicy", "ApiReferenceLink": null, @@ -530895,7 +530895,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-update?view=graph-rest-beta", @@ -530985,7 +530985,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserActivity", "ApiReferenceLink": null, @@ -531002,7 +531002,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserActivityHistoryItem", "ApiReferenceLink": null, @@ -531019,7 +531019,7 @@ "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserActivityStatistics", "ApiReferenceLink": null, @@ -531036,7 +531036,7 @@ "OutputType": "IMicrosoftGraphActivityStatistics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserAppRoleAssignment", "ApiReferenceLink": null, @@ -531053,7 +531053,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -531087,7 +531087,7 @@ "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserAuthenticationMethod", "ApiReferenceLink": null, @@ -531104,7 +531104,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserAuthenticationOperation", "ApiReferenceLink": null, @@ -531121,7 +531121,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -531155,7 +531155,7 @@ "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserAuthenticationSignInPreference", "ApiReferenceLink": null, @@ -531172,7 +531172,7 @@ "OutputType": "IMicrosoftGraphSignInPreferences" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserCalendarGroup", "ApiReferenceLink": null, @@ -531189,7 +531189,7 @@ "OutputType": "IMicrosoftGraphCalendarGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserCalendarPermission", "ApiReferenceLink": null, @@ -531210,7 +531210,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChat", "ApiReferenceLink": null, @@ -531227,7 +531227,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaUserChatInstalledApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-beta", @@ -531244,7 +531244,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatLastMessagePreview", "ApiReferenceLink": null, @@ -531261,7 +531261,7 @@ "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatMember", "ApiReferenceLink": null, @@ -531278,7 +531278,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatMessage", "ApiReferenceLink": null, @@ -531295,7 +531295,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -531312,7 +531312,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatMessageReply", "ApiReferenceLink": null, @@ -531329,7 +531329,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -531346,7 +531346,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatOperation", "ApiReferenceLink": null, @@ -531363,7 +531363,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatPermissionGrant", "ApiReferenceLink": null, @@ -531380,7 +531380,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatPinnedMessage", "ApiReferenceLink": null, @@ -531397,7 +531397,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserChatTab", "ApiReferenceLink": null, @@ -531414,7 +531414,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContact", "ApiReferenceLink": null, @@ -531431,7 +531431,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactExtension", "ApiReferenceLink": null, @@ -531448,7 +531448,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactFolder", "ApiReferenceLink": null, @@ -531465,7 +531465,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -531482,7 +531482,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -531499,7 +531499,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -531516,7 +531516,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderChildFolderContactPhoto", "ApiReferenceLink": null, @@ -531533,7 +531533,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderContact", "ApiReferenceLink": null, @@ -531550,7 +531550,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -531567,7 +531567,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderContactPhoto", "ApiReferenceLink": null, @@ -531584,7 +531584,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserContactPhoto", "ApiReferenceLink": null, @@ -531601,7 +531601,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDevice", "ApiReferenceLink": null, @@ -531618,7 +531618,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDeviceByDeviceId", "ApiReferenceLink": null, @@ -531635,7 +531635,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDeviceCommand", "ApiReferenceLink": null, @@ -531652,7 +531652,7 @@ "OutputType": "IMicrosoftGraphCommand" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -531669,7 +531669,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -531686,7 +531686,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDeviceExtension", "ApiReferenceLink": null, @@ -531703,7 +531703,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -531720,7 +531720,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDeviceUsageRights", "ApiReferenceLink": null, @@ -531737,7 +531737,7 @@ "OutputType": "IMicrosoftGraphUsageRight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDrive", "ApiReferenceLink": null, @@ -531754,7 +531754,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -531771,7 +531771,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItem", "ApiReferenceLink": null, @@ -531788,7 +531788,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemAnalytic", "ApiReferenceLink": null, @@ -531805,7 +531805,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -531822,7 +531822,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -531839,7 +531839,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -531856,7 +531856,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItem", "ApiReferenceLink": null, @@ -531873,7 +531873,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -531890,7 +531890,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -531907,7 +531907,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -531924,7 +531924,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemField", "ApiReferenceLink": null, @@ -531941,7 +531941,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -531958,7 +531958,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -531975,7 +531975,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -531992,7 +531992,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemPermission", "ApiReferenceLink": null, @@ -532009,7 +532009,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -532026,7 +532026,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemSubscription", "ApiReferenceLink": null, @@ -532043,7 +532043,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -532060,7 +532060,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemVersion", "ApiReferenceLink": null, @@ -532077,7 +532077,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -532094,7 +532094,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveList", "ApiReferenceLink": null, @@ -532111,7 +532111,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListColumn", "ApiReferenceLink": null, @@ -532128,7 +532128,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListContentType", "ApiReferenceLink": null, @@ -532145,7 +532145,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -532162,7 +532162,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -532179,7 +532179,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -532196,7 +532196,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItem", "ApiReferenceLink": null, @@ -532213,7 +532213,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -532230,7 +532230,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -532247,7 +532247,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -532264,7 +532264,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemField", "ApiReferenceLink": null, @@ -532281,7 +532281,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -532298,7 +532298,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemVersion", "ApiReferenceLink": null, @@ -532315,7 +532315,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemVersionField", "ApiReferenceLink": null, @@ -532332,7 +532332,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -532349,7 +532349,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListOperation", "ApiReferenceLink": null, @@ -532366,7 +532366,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveListSubscription", "ApiReferenceLink": null, @@ -532383,7 +532383,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRoot", "ApiReferenceLink": null, @@ -532400,7 +532400,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootAnalytic", "ApiReferenceLink": null, @@ -532417,7 +532417,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -532434,7 +532434,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -532451,7 +532451,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -532468,7 +532468,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItem", "ApiReferenceLink": null, @@ -532485,7 +532485,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -532502,7 +532502,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -532519,7 +532519,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -532536,7 +532536,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemField", "ApiReferenceLink": null, @@ -532553,7 +532553,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -532570,7 +532570,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -532587,7 +532587,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -532604,7 +532604,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootPermission", "ApiReferenceLink": null, @@ -532621,7 +532621,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -532638,7 +532638,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootSubscription", "ApiReferenceLink": null, @@ -532655,7 +532655,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -532672,7 +532672,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootVersion", "ApiReferenceLink": null, @@ -532689,7 +532689,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserEvent", "ApiReferenceLink": null, @@ -532706,7 +532706,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -532723,7 +532723,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -532740,7 +532740,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserEventExtension", "ApiReferenceLink": null, @@ -532757,7 +532757,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -532774,7 +532774,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserEventInstanceExtension", "ApiReferenceLink": null, @@ -532791,7 +532791,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserExtension", "ApiReferenceLink": null, @@ -532808,7 +532808,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInferenceClassification", "ApiReferenceLink": null, @@ -532825,7 +532825,7 @@ "OutputType": "IMicrosoftGraphInferenceClassification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInferenceClassificationOverride", "ApiReferenceLink": null, @@ -532842,7 +532842,7 @@ "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtection", "ApiReferenceLink": null, @@ -532859,7 +532859,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -532876,7 +532876,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionPolicy", "ApiReferenceLink": null, @@ -532893,7 +532893,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -532910,7 +532910,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -532927,7 +532927,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -532944,7 +532944,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionSensitivityPolicySetting", "ApiReferenceLink": null, @@ -532961,7 +532961,7 @@ "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -532978,7 +532978,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -532995,7 +532995,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInsight", "ApiReferenceLink": null, @@ -533012,7 +533012,7 @@ "OutputType": "IMicrosoftGraphItemInsights" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInsightShared", "ApiReferenceLink": null, @@ -533029,7 +533029,7 @@ "OutputType": "IMicrosoftGraphSharedInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInsightTrending", "ApiReferenceLink": null, @@ -533046,7 +533046,7 @@ "OutputType": "IMicrosoftGraphTrending" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserInsightUsed", "ApiReferenceLink": null, @@ -533063,7 +533063,7 @@ "OutputType": "IMicrosoftGraphUsedInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserLicenseDetail", "ApiReferenceLink": null, @@ -533080,7 +533080,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMailboxSetting", "ApiReferenceLink": null, @@ -533097,7 +533097,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMailFolder", "ApiReferenceLink": null, @@ -533114,7 +533114,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -533131,7 +533131,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -533148,7 +533148,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -533165,7 +533165,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderChildFolderMessageRule", "ApiReferenceLink": null, @@ -533182,7 +533182,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderMessage", "ApiReferenceLink": null, @@ -533199,7 +533199,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -533216,7 +533216,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderMessageRule", "ApiReferenceLink": null, @@ -533233,7 +533233,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDevice", "ApiReferenceLink": null, @@ -533250,7 +533250,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -533267,7 +533267,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceCategory", "ApiReferenceLink": null, @@ -533284,7 +533284,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -533301,7 +533301,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -533318,7 +533318,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -533335,7 +533335,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -533352,7 +533352,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -533369,7 +533369,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -533386,7 +533386,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -533403,7 +533403,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaUserManagedDeviceWindowsDeviceAccount", "ApiReferenceLink": null, @@ -533420,7 +533420,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -533437,7 +533437,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -533454,7 +533454,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMessage", "ApiReferenceLink": null, @@ -533471,7 +533471,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMessageExtension", "ApiReferenceLink": null, @@ -533488,7 +533488,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMobileAppIntentAndState", "ApiReferenceLink": null, @@ -533505,7 +533505,7 @@ "OutputType": "IMicrosoftGraphMobileAppIntentAndState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -533522,7 +533522,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -533539,7 +533539,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserNotification", "ApiReferenceLink": null, @@ -533556,7 +533556,7 @@ "OutputType": "IMicrosoftGraphNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnenoteNotebook", "ApiReferenceLink": null, @@ -533573,7 +533573,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnenotePage", "ApiReferenceLink": null, @@ -533590,7 +533590,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaUserOnenotePageContent", "ApiReferenceLink": null, @@ -533607,7 +533607,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnenoteSection", "ApiReferenceLink": null, @@ -533624,7 +533624,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -533641,7 +533641,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeeting", "ApiReferenceLink": null, @@ -533675,7 +533675,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -533696,7 +533696,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -533717,7 +533717,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingByJoinWebUrl", "ApiReferenceLink": null, @@ -533734,7 +533734,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -533751,7 +533751,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingRegistration", "ApiReferenceLink": null, @@ -533768,7 +533768,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -533785,7 +533785,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -533802,7 +533802,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -533819,7 +533819,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOutlookMasterCategory", "ApiReferenceLink": null, @@ -533836,7 +533836,7 @@ "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTask", "ApiReferenceLink": null, @@ -533853,7 +533853,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskFolder", "ApiReferenceLink": null, @@ -533870,7 +533870,7 @@ "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskFolderTask", "ApiReferenceLink": null, @@ -533887,7 +533887,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskGroup", "ApiReferenceLink": null, @@ -533904,7 +533904,7 @@ "OutputType": "IMicrosoftGraphOutlookTaskGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskGroupTaskFolder", "ApiReferenceLink": null, @@ -533921,7 +533921,7 @@ "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskGroupTaskFolderTask", "ApiReferenceLink": null, @@ -533938,7 +533938,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgBetaUserPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-changepassword?view=graph-rest-beta", @@ -533955,7 +533955,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserPlanner", "ApiReferenceLink": null, @@ -533989,7 +533989,7 @@ "OutputType": "IMicrosoftGraphPlannerUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserPresence", "ApiReferenceLink": null, @@ -534006,7 +534006,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfile", "ApiReferenceLink": null, @@ -534023,7 +534023,7 @@ "OutputType": "IMicrosoftGraphProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileAccount", "ApiReferenceLink": null, @@ -534057,7 +534057,7 @@ "OutputType": "IMicrosoftGraphUserAccountInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileAddress", "ApiReferenceLink": null, @@ -534091,7 +534091,7 @@ "OutputType": "IMicrosoftGraphItemAddress" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileAnniversary", "ApiReferenceLink": null, @@ -534125,7 +534125,7 @@ "OutputType": "IMicrosoftGraphPersonAnnualEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileAward", "ApiReferenceLink": null, @@ -534159,7 +534159,7 @@ "OutputType": "IMicrosoftGraphPersonAward" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileCertification", "ApiReferenceLink": null, @@ -534193,7 +534193,7 @@ "OutputType": "IMicrosoftGraphPersonCertification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileEducationalActivity", "ApiReferenceLink": null, @@ -534227,7 +534227,7 @@ "OutputType": "IMicrosoftGraphEducationalActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileEmail", "ApiReferenceLink": null, @@ -534261,7 +534261,7 @@ "OutputType": "IMicrosoftGraphItemEmail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileInterest", "ApiReferenceLink": null, @@ -534295,7 +534295,7 @@ "OutputType": "IMicrosoftGraphPersonInterest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileLanguage", "ApiReferenceLink": null, @@ -534329,7 +534329,7 @@ "OutputType": "IMicrosoftGraphLanguageProficiency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileName", "ApiReferenceLink": null, @@ -534363,7 +534363,7 @@ "OutputType": "IMicrosoftGraphPersonName" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileNote", "ApiReferenceLink": null, @@ -534421,7 +534421,7 @@ "OutputType": "IMicrosoftGraphPersonAnnotation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfilePatent", "ApiReferenceLink": null, @@ -534455,7 +534455,7 @@ "OutputType": "IMicrosoftGraphItemPatent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfilePhone", "ApiReferenceLink": null, @@ -534489,7 +534489,7 @@ "OutputType": "IMicrosoftGraphItemPhone" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfilePosition", "ApiReferenceLink": null, @@ -534523,7 +534523,7 @@ "OutputType": "IMicrosoftGraphWorkPosition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileProject", "ApiReferenceLink": null, @@ -534557,7 +534557,7 @@ "OutputType": "IMicrosoftGraphProjectParticipation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfilePublication", "ApiReferenceLink": null, @@ -534591,7 +534591,7 @@ "OutputType": "IMicrosoftGraphItemPublication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileSkill", "ApiReferenceLink": null, @@ -534625,7 +534625,7 @@ "OutputType": "IMicrosoftGraphSkillProficiency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileWebAccount", "ApiReferenceLink": null, @@ -534659,7 +534659,7 @@ "OutputType": "IMicrosoftGraphWebAccount" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserProfileWebsite", "ApiReferenceLink": null, @@ -534693,7 +534693,7 @@ "OutputType": "IMicrosoftGraphPersonWebsite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -534710,7 +534710,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSecurity", "ApiReferenceLink": null, @@ -534727,7 +534727,7 @@ "OutputType": "IMicrosoftGraphSecurity1" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSecurityInformationProtection", "ApiReferenceLink": null, @@ -534744,7 +534744,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSecurityInformationProtectionLabelPolicySetting", "ApiReferenceLink": null, @@ -534761,7 +534761,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -534778,7 +534778,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSecurityInformationProtectionSensitivityLabelParent", "ApiReferenceLink": null, @@ -534795,7 +534795,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSetting", "ApiReferenceLink": null, @@ -534829,7 +534829,7 @@ "OutputType": "IMicrosoftGraphUserSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSettingContactMergeSuggestion", "ApiReferenceLink": null, @@ -534846,7 +534846,7 @@ "OutputType": "IMicrosoftGraphContactMergeSuggestions" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSettingItemInsight", "ApiReferenceLink": null, @@ -534863,7 +534863,7 @@ "OutputType": "IMicrosoftGraphUserInsightsSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSettingRegionalAndLanguageSetting", "ApiReferenceLink": null, @@ -534880,7 +534880,7 @@ "OutputType": "IMicrosoftGraphRegionalAndLanguageSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSettingShiftPreference", "ApiReferenceLink": null, @@ -534914,7 +534914,7 @@ "OutputType": "IMicrosoftGraphShiftPreferences" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSettingStorage", "ApiReferenceLink": null, @@ -534931,7 +534931,7 @@ "OutputType": "IMicrosoftGraphUserStorage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSettingStorageQuota", "ApiReferenceLink": null, @@ -534948,7 +534948,7 @@ "OutputType": "IMicrosoftGraphUnifiedStorageQuota" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSettingStorageQuotaService", "ApiReferenceLink": null, @@ -534965,7 +534965,7 @@ "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSettingWindows", "ApiReferenceLink": null, @@ -534982,7 +534982,7 @@ "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -534999,7 +534999,7 @@ "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserTeamwork", "ApiReferenceLink": null, @@ -535016,7 +535016,7 @@ "OutputType": "IMicrosoftGraphUserTeamwork" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -535033,7 +535033,7 @@ "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserTodoList", "ApiReferenceLink": null, @@ -535067,7 +535067,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserTodoListExtension", "ApiReferenceLink": null, @@ -535084,7 +535084,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserTodoListTask", "ApiReferenceLink": null, @@ -535118,7 +535118,7 @@ "OutputType": "IMicrosoftGraphTodoTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserTodoListTaskAttachmentSession", "ApiReferenceLink": null, @@ -535135,7 +535135,7 @@ "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserTodoListTaskChecklistItem", "ApiReferenceLink": null, @@ -535169,7 +535169,7 @@ "OutputType": "IMicrosoftGraphChecklistItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserTodoListTaskExtension", "ApiReferenceLink": null, @@ -535186,7 +535186,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaUserTodoListTaskLinkedResource", "ApiReferenceLink": null, @@ -535220,7 +535220,7 @@ "OutputType": "IMicrosoftGraphLinkedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEvent", "ApiReferenceLink": null, @@ -535237,7 +535237,7 @@ "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventPresenter", "ApiReferenceLink": null, @@ -535254,7 +535254,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventSession", "ApiReferenceLink": null, @@ -535271,7 +535271,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -535288,7 +535288,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -535305,7 +535305,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -535322,7 +535322,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhall", "ApiReferenceLink": null, @@ -535339,7 +535339,7 @@ "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallPresenter", "ApiReferenceLink": null, @@ -535356,7 +535356,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallSession", "ApiReferenceLink": null, @@ -535373,7 +535373,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallSessionAttendanceReport", "ApiReferenceLink": null, @@ -535390,7 +535390,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -535407,7 +535407,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -535424,7 +535424,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinar", "ApiReferenceLink": null, @@ -535441,7 +535441,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarPresenter", "ApiReferenceLink": null, @@ -535458,7 +535458,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -535475,7 +535475,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarRegistrationByEmail", "ApiReferenceLink": null, @@ -535492,7 +535492,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarRegistrationByUserId", "ApiReferenceLink": null, @@ -535509,7 +535509,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -535526,7 +535526,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -535543,7 +535543,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -535560,7 +535560,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -535968,7 +535968,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBookingBusiness", "ApiReferenceLink": null, @@ -536002,7 +536002,7 @@ "OutputType": "IMicrosoftGraphBookingBusiness" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBookingBusinessAppointment", "ApiReferenceLink": null, @@ -536052,7 +536052,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -536069,7 +536069,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBookingBusinessCustomer", "ApiReferenceLink": null, @@ -536119,7 +536119,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -536161,7 +536161,7 @@ "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBookingBusinessService", "ApiReferenceLink": null, @@ -536195,7 +536195,7 @@ "OutputType": "IMicrosoftGraphBookingService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -536229,7 +536229,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgBookingCurrency", "ApiReferenceLink": null, @@ -536246,7 +536246,7 @@ "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-patch?view=graph-rest-1.0", @@ -536288,7 +536288,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgChatInstalledApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0", @@ -536394,7 +536394,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgChatLastMessagePreview", "ApiReferenceLink": null, @@ -536411,7 +536411,7 @@ "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgChatMember", "ApiReferenceLink": null, @@ -536428,7 +536428,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgChatMessage", "ApiReferenceLink": null, @@ -536478,7 +536478,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgChatMessageReply", "ApiReferenceLink": null, @@ -536495,7 +536495,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -536512,7 +536512,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgChatPermissionGrant", "ApiReferenceLink": null, @@ -536529,7 +536529,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgChatPinnedMessage", "ApiReferenceLink": null, @@ -536546,7 +536546,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgChatTab", "ApiReferenceLink": null, @@ -536604,7 +536604,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -536638,7 +536638,7 @@ "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -536655,7 +536655,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationCallOperation", "ApiReferenceLink": null, @@ -536672,7 +536672,7 @@ "OutputType": "IMicrosoftGraphCommsOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationCallParticipant", "ApiReferenceLink": null, @@ -536689,7 +536689,7 @@ "OutputType": "IMicrosoftGraphParticipant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgCommunicationCallRecordingStatus", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-1.0", @@ -536723,7 +536723,7 @@ "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -536740,7 +536740,7 @@ "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -536757,7 +536757,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -536774,7 +536774,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -536791,7 +536791,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -536808,7 +536808,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -536825,7 +536825,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCommunicationPresence", "ApiReferenceLink": null, @@ -536842,7 +536842,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgCompliance", "ApiReferenceLink": null, @@ -536857,7 +536857,7 @@ "OutputType": "IMicrosoftGraphCompliance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgContact", "ApiReferenceLink": null, @@ -536874,7 +536874,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgContract", "ApiReferenceLink": null, @@ -536891,7 +536891,7 @@ "OutputType": "IMicrosoftGraphContract" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDataPolicyOperation", "ApiReferenceLink": null, @@ -536908,7 +536908,7 @@ "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-1.0", @@ -538954,7 +538954,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceByDeviceId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-1.0", @@ -538971,7 +538971,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceExtension", "ApiReferenceLink": null, @@ -538988,7 +538988,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagement", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-companyterms-devicemanagement-update?view=graph-rest-1.0", @@ -539044,7 +539044,7 @@ "OutputType": "IMicrosoftGraphDeviceManagement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementApplePushNotificationCertificate", "ApiReferenceLink": null, @@ -539076,7 +539076,7 @@ "OutputType": "IMicrosoftGraphApplePushNotificationCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -539093,7 +539093,7 @@ "OutputType": "IMicrosoftGraphAuditEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -539127,7 +539127,7 @@ "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementConditionalAccessSetting", "ApiReferenceLink": null, @@ -539159,7 +539159,7 @@ "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -539193,7 +539193,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -539227,7 +539227,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -539244,7 +539244,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -539261,7 +539261,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -539278,7 +539278,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "ApiReferenceLink": null, @@ -539293,7 +539293,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -539310,7 +539310,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "ApiReferenceLink": null, @@ -539327,7 +539327,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -539344,7 +539344,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -539361,7 +539361,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -539378,7 +539378,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -539395,7 +539395,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -539412,7 +539412,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "ApiReferenceLink": null, @@ -539429,7 +539429,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -539446,7 +539446,7 @@ "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -539463,7 +539463,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -539480,7 +539480,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "ApiReferenceLink": null, @@ -539495,7 +539495,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -539512,7 +539512,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "ApiReferenceLink": null, @@ -539529,7 +539529,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -539546,7 +539546,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatusOverview", "ApiReferenceLink": null, @@ -539563,7 +539563,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -539597,7 +539597,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -539631,7 +539631,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -539665,7 +539665,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -539682,7 +539682,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -539699,7 +539699,7 @@ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -539733,7 +539733,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceCategory", "ApiReferenceLink": null, @@ -539750,7 +539750,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -539767,7 +539767,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -539784,7 +539784,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -539801,7 +539801,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-updatewindowsdeviceaccount?view=graph-rest-1.0", @@ -539818,7 +539818,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -539835,7 +539835,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -539852,7 +539852,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -539869,7 +539869,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -539903,7 +539903,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -539937,7 +539937,7 @@ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -539954,7 +539954,7 @@ "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -539971,7 +539971,7 @@ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementPartner", "ApiReferenceLink": null, @@ -540005,7 +540005,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -540039,7 +540039,7 @@ "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementReport", "ApiReferenceLink": null, @@ -540087,7 +540087,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementReports" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -540121,7 +540121,7 @@ "OutputType": "IMicrosoftGraphResourceOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -540155,7 +540155,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -540189,7 +540189,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -540223,7 +540223,7 @@ "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -540240,7 +540240,7 @@ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -540257,7 +540257,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -540274,7 +540274,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -540291,7 +540291,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -540308,7 +540308,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -540342,7 +540342,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -540376,7 +540376,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -540410,7 +540410,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -540444,7 +540444,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -540478,7 +540478,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -540512,7 +540512,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -540546,7 +540546,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -540580,7 +540580,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", "ApiReferenceLink": null, @@ -540612,7 +540612,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -540629,7 +540629,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -540663,7 +540663,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -540697,7 +540697,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -540714,7 +540714,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -540748,7 +540748,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -540782,7 +540782,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -540816,7 +540816,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -540850,7 +540850,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -540884,7 +540884,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -540918,7 +540918,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -540952,7 +540952,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticOverview", "ApiReferenceLink": null, @@ -540984,7 +540984,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -541018,7 +541018,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "ApiReferenceLink": null, @@ -541050,7 +541050,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -541084,7 +541084,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -541118,7 +541118,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -541152,7 +541152,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -541169,7 +541169,7 @@ "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -541186,7 +541186,7 @@ "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -541203,7 +541203,7 @@ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -541220,7 +541220,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -541237,7 +541237,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting", "ApiReferenceLink": null, @@ -541254,7 +541254,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -541271,7 +541271,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -541288,7 +541288,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-windowsautopilotdeviceidentity-updatedeviceproperties?view=graph-rest-1.0", @@ -541305,7 +541305,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -541322,7 +541322,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -541339,7 +541339,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -541373,7 +541373,7 @@ "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -541407,7 +541407,7 @@ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectory", "ApiReferenceLink": null, @@ -541422,7 +541422,7 @@ "OutputType": "IMicrosoftGraphDirectory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -541439,7 +541439,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -541456,7 +541456,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -541473,7 +541473,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryAttributeSet", "ApiReferenceLink": null, @@ -541490,7 +541490,7 @@ "OutputType": "IMicrosoftGraphAttributeSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -541507,7 +541507,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -541524,7 +541524,7 @@ "OutputType": "IMicrosoftGraphAllowedValue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryDeviceLocalCredential", "ApiReferenceLink": null, @@ -541541,7 +541541,7 @@ "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -541558,7 +541558,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryObject", "ApiReferenceLink": null, @@ -541575,7 +541575,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -541592,7 +541592,7 @@ "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryRole", "ApiReferenceLink": null, @@ -541609,7 +541609,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryRoleByRoleTemplateId", "ApiReferenceLink": null, @@ -541626,7 +541626,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -541643,7 +541643,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectoryRoleTemplate", "ApiReferenceLink": null, @@ -541660,7 +541660,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectorySubscription", "ApiReferenceLink": null, @@ -541677,7 +541677,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDirectorySubscriptionByCommerceSubscriptionId", "ApiReferenceLink": null, @@ -541694,7 +541694,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-update?view=graph-rest-1.0", @@ -541711,7 +541711,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDomainFederationConfiguration", "ApiReferenceLink": null, @@ -541728,7 +541728,7 @@ "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -541745,7 +541745,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -541762,7 +541762,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDrive", "ApiReferenceLink": null, @@ -541779,7 +541779,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -541796,7 +541796,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItem", "ApiReferenceLink": null, @@ -541838,7 +541838,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemAnalytic", "ApiReferenceLink": null, @@ -541855,7 +541855,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -541872,7 +541872,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -541889,7 +541889,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -541906,7 +541906,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemListItem", "ApiReferenceLink": null, @@ -541923,7 +541923,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -541940,7 +541940,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -541957,7 +541957,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -541974,7 +541974,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemListItemField", "ApiReferenceLink": null, @@ -541991,7 +541991,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542008,7 +542008,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemListItemVersion", "ApiReferenceLink": null, @@ -542025,7 +542025,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -542042,7 +542042,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemPermission", "ApiReferenceLink": null, @@ -542084,7 +542084,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -542101,7 +542101,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemSubscription", "ApiReferenceLink": null, @@ -542118,7 +542118,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemThumbnail", "ApiReferenceLink": null, @@ -542135,7 +542135,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveItemVersion", "ApiReferenceLink": null, @@ -542152,7 +542152,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542169,7 +542169,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveList", "ApiReferenceLink": null, @@ -542186,7 +542186,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListColumn", "ApiReferenceLink": null, @@ -542203,7 +542203,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListContentType", "ApiReferenceLink": null, @@ -542220,7 +542220,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -542237,7 +542237,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -542254,7 +542254,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542271,7 +542271,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListItem", "ApiReferenceLink": null, @@ -542288,7 +542288,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542305,7 +542305,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -542322,7 +542322,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -542339,7 +542339,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListItemField", "ApiReferenceLink": null, @@ -542356,7 +542356,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542373,7 +542373,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListItemVersion", "ApiReferenceLink": null, @@ -542390,7 +542390,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListItemVersionField", "ApiReferenceLink": null, @@ -542407,7 +542407,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542424,7 +542424,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListOperation", "ApiReferenceLink": null, @@ -542441,7 +542441,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveListSubscription", "ApiReferenceLink": null, @@ -542458,7 +542458,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRoot", "ApiReferenceLink": null, @@ -542475,7 +542475,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootAnalytic", "ApiReferenceLink": null, @@ -542492,7 +542492,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -542509,7 +542509,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542526,7 +542526,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542543,7 +542543,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootListItem", "ApiReferenceLink": null, @@ -542560,7 +542560,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542577,7 +542577,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -542594,7 +542594,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -542611,7 +542611,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootListItemField", "ApiReferenceLink": null, @@ -542628,7 +542628,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -542645,7 +542645,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootListItemVersion", "ApiReferenceLink": null, @@ -542662,7 +542662,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -542679,7 +542679,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootPermission", "ApiReferenceLink": null, @@ -542696,7 +542696,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -542713,7 +542713,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootSubscription", "ApiReferenceLink": null, @@ -542730,7 +542730,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootThumbnail", "ApiReferenceLink": null, @@ -542747,7 +542747,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgDriveRootVersion", "ApiReferenceLink": null, @@ -542764,7 +542764,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClass", "ApiReferenceLink": null, @@ -542781,7 +542781,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignment", "ApiReferenceLink": null, @@ -542815,7 +542815,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -542832,7 +542832,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentDefault", "ApiReferenceLink": null, @@ -542866,7 +542866,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -542883,7 +542883,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentRubric", "ApiReferenceLink": null, @@ -542917,7 +542917,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentSetting", "ApiReferenceLink": null, @@ -542951,7 +542951,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -542968,7 +542968,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -542985,7 +542985,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -543019,7 +543019,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -543036,7 +543036,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -543053,7 +543053,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassModule", "ApiReferenceLink": null, @@ -543087,7 +543087,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationClassModuleResource", "ApiReferenceLink": null, @@ -543121,7 +543121,7 @@ "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMe", "ApiReferenceLink": null, @@ -543136,7 +543136,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMeAssignment", "ApiReferenceLink": null, @@ -543153,7 +543153,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -543170,7 +543170,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentRubric", "ApiReferenceLink": null, @@ -543187,7 +543187,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -543204,7 +543204,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -543221,7 +543221,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -543238,7 +543238,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -543255,7 +543255,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMeRubric", "ApiReferenceLink": null, @@ -543289,7 +543289,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationMeUserMailboxSetting", "ApiReferenceLink": null, @@ -543304,7 +543304,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationRoot", "ApiReferenceLink": null, @@ -543319,7 +543319,7 @@ "OutputType": "IMicrosoftGraphEducationRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationSchool", "ApiReferenceLink": null, @@ -543336,7 +543336,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationSchoolAdministrativeUnit", "ApiReferenceLink": null, @@ -543353,7 +543353,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUser", "ApiReferenceLink": null, @@ -543370,7 +543370,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUserAssignment", "ApiReferenceLink": null, @@ -543387,7 +543387,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -543404,7 +543404,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentRubric", "ApiReferenceLink": null, @@ -543421,7 +543421,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -543438,7 +543438,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -543455,7 +543455,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -543472,7 +543472,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -543489,7 +543489,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUserMailboxSetting", "ApiReferenceLink": null, @@ -543506,7 +543506,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEducationUserRubric", "ApiReferenceLink": null, @@ -543523,7 +543523,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -543540,7 +543540,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApproval", "ApiReferenceLink": null, @@ -543557,7 +543557,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "ApiReferenceLink": null, @@ -543574,7 +543574,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -543591,7 +543591,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackageResourceRoleScope", "ApiReferenceLink": null, @@ -543608,7 +543608,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgEntitlementManagementAssignment", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-reprocess?view=graph-rest-1.0", @@ -543627,7 +543627,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -543644,7 +543644,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementAssignmentPolicyQuestion", "ApiReferenceLink": null, @@ -543661,7 +543661,7 @@ "OutputType": "IMicrosoftGraphAccessPackageQuestion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgEntitlementManagementAssignmentRequest", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-reprocess?view=graph-rest-1.0", @@ -543680,7 +543680,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalog", "ApiReferenceLink": null, @@ -543697,7 +543697,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -543714,7 +543714,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResource", "ApiReferenceLink": null, @@ -543731,7 +543731,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRole", "ApiReferenceLink": null, @@ -543756,7 +543756,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRoleResource", "ApiReferenceLink": null, @@ -543777,7 +543777,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -543798,7 +543798,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -543819,7 +543819,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -543836,7 +543836,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScope", "ApiReferenceLink": null, @@ -543861,7 +543861,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScopeResource", "ApiReferenceLink": null, @@ -543882,7 +543882,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -543903,7 +543903,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -543924,7 +543924,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -543941,7 +543941,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -543958,7 +543958,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResource", "ApiReferenceLink": null, @@ -543975,7 +543975,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironment", "ApiReferenceLink": null, @@ -543992,7 +543992,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResource", "ApiReferenceLink": null, @@ -544009,7 +544009,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceRole", "ApiReferenceLink": null, @@ -544026,7 +544026,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResource", "ApiReferenceLink": null, @@ -544043,7 +544043,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", "ApiReferenceLink": null, @@ -544060,7 +544060,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -544077,7 +544077,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceScope", "ApiReferenceLink": null, @@ -544094,7 +544094,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResource", "ApiReferenceLink": null, @@ -544111,7 +544111,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", "ApiReferenceLink": null, @@ -544128,7 +544128,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -544145,7 +544145,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequest", "ApiReferenceLink": null, @@ -544162,7 +544162,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalog", "ApiReferenceLink": null, @@ -544179,7 +544179,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -544196,7 +544196,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResource", "ApiReferenceLink": null, @@ -544213,7 +544213,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRole", "ApiReferenceLink": null, @@ -544238,7 +544238,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource", "ApiReferenceLink": null, @@ -544259,7 +544259,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -544280,7 +544280,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -544301,7 +544301,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -544318,7 +544318,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScope", "ApiReferenceLink": null, @@ -544343,7 +544343,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource", "ApiReferenceLink": null, @@ -544364,7 +544364,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -544385,7 +544385,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -544406,7 +544406,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -544423,7 +544423,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResource", "ApiReferenceLink": null, @@ -544440,7 +544440,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceRole", "ApiReferenceLink": null, @@ -544457,7 +544457,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceRoleResource", "ApiReferenceLink": null, @@ -544474,7 +544474,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceRoleResourceScope", "ApiReferenceLink": null, @@ -544491,7 +544491,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -544508,7 +544508,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceScope", "ApiReferenceLink": null, @@ -544525,7 +544525,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceScopeResource", "ApiReferenceLink": null, @@ -544542,7 +544542,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceScopeResourceRole", "ApiReferenceLink": null, @@ -544559,7 +544559,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -544576,7 +544576,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRole", "ApiReferenceLink": null, @@ -544593,7 +544593,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleResource", "ApiReferenceLink": null, @@ -544610,7 +544610,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleResourceScope", "ApiReferenceLink": null, @@ -544627,7 +544627,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -544644,7 +544644,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScope", "ApiReferenceLink": null, @@ -544661,7 +544661,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResource", "ApiReferenceLink": null, @@ -544678,7 +544678,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResourceRole", "ApiReferenceLink": null, @@ -544695,7 +544695,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResourceRoleResource", "ApiReferenceLink": null, @@ -544712,7 +544712,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -544729,7 +544729,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResourceScope", "ApiReferenceLink": null, @@ -544746,7 +544746,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRole", "ApiReferenceLink": null, @@ -544763,7 +544763,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResource", "ApiReferenceLink": null, @@ -544780,7 +544780,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceRole", "ApiReferenceLink": null, @@ -544797,7 +544797,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScope", "ApiReferenceLink": null, @@ -544814,7 +544814,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource", "ApiReferenceLink": null, @@ -544831,7 +544831,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -544848,7 +544848,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceScope", "ApiReferenceLink": null, @@ -544865,7 +544865,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceScopeResource", "ApiReferenceLink": null, @@ -544882,7 +544882,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceScopeResourceRole", "ApiReferenceLink": null, @@ -544899,7 +544899,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -544916,7 +544916,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgEntitlementManagementSetting", "ApiReferenceLink": null, @@ -544931,7 +544931,7 @@ "OutputType": "IMicrosoftGraphEntitlementManagementSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgExternal", "ApiReferenceLink": null, @@ -544946,7 +544946,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgExternalConnection", "ApiReferenceLink": null, @@ -544980,7 +544980,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgExternalConnectionGroup", "ApiReferenceLink": null, @@ -545014,7 +545014,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -545031,7 +545031,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -545048,7 +545048,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgExternalConnectionOperation", "ApiReferenceLink": null, @@ -545065,7 +545065,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgExternalConnectionSchema", "ApiReferenceLink": null, @@ -545099,7 +545099,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0", @@ -545133,7 +545133,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -545150,7 +545150,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0", @@ -545167,7 +545167,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupCalendarEvent", "ApiReferenceLink": null, @@ -545201,7 +545201,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupCalendarPermission", "ApiReferenceLink": null, @@ -545218,7 +545218,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupConversationThread", "ApiReferenceLink": null, @@ -545252,7 +545252,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -545269,7 +545269,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -545286,7 +545286,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDrive", "ApiReferenceLink": null, @@ -545303,7 +545303,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545320,7 +545320,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItem", "ApiReferenceLink": null, @@ -545337,7 +545337,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemAnalytic", "ApiReferenceLink": null, @@ -545354,7 +545354,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -545371,7 +545371,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545388,7 +545388,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545405,7 +545405,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItem", "ApiReferenceLink": null, @@ -545422,7 +545422,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545439,7 +545439,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -545456,7 +545456,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -545473,7 +545473,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemField", "ApiReferenceLink": null, @@ -545490,7 +545490,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545507,7 +545507,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -545524,7 +545524,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -545541,7 +545541,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemPermission", "ApiReferenceLink": null, @@ -545558,7 +545558,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -545575,7 +545575,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -545592,7 +545592,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -545609,7 +545609,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveItemVersion", "ApiReferenceLink": null, @@ -545626,7 +545626,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545643,7 +545643,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveList", "ApiReferenceLink": null, @@ -545660,7 +545660,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListColumn", "ApiReferenceLink": null, @@ -545677,7 +545677,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListContentType", "ApiReferenceLink": null, @@ -545694,7 +545694,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -545711,7 +545711,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -545728,7 +545728,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545745,7 +545745,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListItem", "ApiReferenceLink": null, @@ -545762,7 +545762,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545779,7 +545779,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -545796,7 +545796,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -545813,7 +545813,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListItemField", "ApiReferenceLink": null, @@ -545830,7 +545830,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545847,7 +545847,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -545864,7 +545864,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListItemVersionField", "ApiReferenceLink": null, @@ -545881,7 +545881,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -545898,7 +545898,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListOperation", "ApiReferenceLink": null, @@ -545915,7 +545915,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveListSubscription", "ApiReferenceLink": null, @@ -545932,7 +545932,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRoot", "ApiReferenceLink": null, @@ -545949,7 +545949,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootAnalytic", "ApiReferenceLink": null, @@ -545966,7 +545966,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -545983,7 +545983,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -546000,7 +546000,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -546017,7 +546017,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItem", "ApiReferenceLink": null, @@ -546034,7 +546034,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -546051,7 +546051,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -546068,7 +546068,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -546085,7 +546085,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemField", "ApiReferenceLink": null, @@ -546102,7 +546102,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -546119,7 +546119,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -546136,7 +546136,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -546153,7 +546153,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootPermission", "ApiReferenceLink": null, @@ -546170,7 +546170,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -546187,7 +546187,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -546204,7 +546204,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -546221,7 +546221,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupDriveRootVersion", "ApiReferenceLink": null, @@ -546238,7 +546238,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupEvent", "ApiReferenceLink": null, @@ -546272,7 +546272,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupEventExtension", "ApiReferenceLink": null, @@ -546289,7 +546289,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -546306,7 +546306,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupExtension", "ApiReferenceLink": null, @@ -546323,7 +546323,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-update?view=graph-rest-1.0", @@ -546344,7 +546344,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -546361,7 +546361,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupOnenotePage", "ApiReferenceLink": null, @@ -546378,7 +546378,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgGroupOnenotePageContent", "ApiReferenceLink": null, @@ -546395,7 +546395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupOnenoteSection", "ApiReferenceLink": null, @@ -546412,7 +546412,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -546429,7 +546429,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupPermissionGrant", "ApiReferenceLink": null, @@ -546446,7 +546446,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupPlanner", "ApiReferenceLink": null, @@ -546463,7 +546463,7 @@ "OutputType": "IMicrosoftGraphPlannerGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupPlannerPlanDetail", "ApiReferenceLink": null, @@ -546480,7 +546480,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSetting", "ApiReferenceLink": null, @@ -546518,7 +546518,7 @@ "OutputType": "IMicrosoftGraphGroupSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSettingTemplateGroupSettingTemplate", "ApiReferenceLink": null, @@ -546535,7 +546535,7 @@ "OutputType": "IMicrosoftGraphGroupSettingTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSite", "ApiReferenceLink": null, @@ -546552,7 +546552,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteAnalytic", "ApiReferenceLink": null, @@ -546569,7 +546569,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -546586,7 +546586,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -546603,7 +546603,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteColumn", "ApiReferenceLink": null, @@ -546620,7 +546620,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteContentType", "ApiReferenceLink": null, @@ -546637,7 +546637,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -546654,7 +546654,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -546671,7 +546671,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -546688,7 +546688,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -546709,7 +546709,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -546730,7 +546730,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -546751,7 +546751,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -546768,7 +546768,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteList", "ApiReferenceLink": null, @@ -546785,7 +546785,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListColumn", "ApiReferenceLink": null, @@ -546802,7 +546802,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListContentType", "ApiReferenceLink": null, @@ -546819,7 +546819,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -546836,7 +546836,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -546853,7 +546853,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -546870,7 +546870,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListItem", "ApiReferenceLink": null, @@ -546887,7 +546887,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -546904,7 +546904,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -546921,7 +546921,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -546938,7 +546938,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListItemField", "ApiReferenceLink": null, @@ -546955,7 +546955,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -546972,7 +546972,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -546989,7 +546989,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListItemVersionField", "ApiReferenceLink": null, @@ -547006,7 +547006,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -547023,7 +547023,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListOperation", "ApiReferenceLink": null, @@ -547040,7 +547040,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteListSubscription", "ApiReferenceLink": null, @@ -547057,7 +547057,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenote", "ApiReferenceLink": null, @@ -547074,7 +547074,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -547091,7 +547091,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -547108,7 +547108,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -547125,7 +547125,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -547142,7 +547142,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -547159,7 +547159,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -547176,7 +547176,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -547193,7 +547193,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -547210,7 +547210,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -547227,7 +547227,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -547244,7 +547244,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -547261,7 +547261,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -547278,7 +547278,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -547295,7 +547295,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -547312,7 +547312,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteOperation", "ApiReferenceLink": null, @@ -547329,7 +547329,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePage", "ApiReferenceLink": null, @@ -547346,7 +547346,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -547363,7 +547363,7 @@ "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -547380,7 +547380,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -547397,7 +547397,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -547414,7 +547414,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -547431,7 +547431,7 @@ "OutputType": "IMicrosoftGraphVerticalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -547448,7 +547448,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -547465,7 +547465,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -547482,7 +547482,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -547499,7 +547499,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -547516,7 +547516,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -547533,7 +547533,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSitePermission", "ApiReferenceLink": null, @@ -547550,7 +547550,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStore", "ApiReferenceLink": null, @@ -547571,7 +547571,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -547592,7 +547592,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -547613,7 +547613,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -547642,7 +547642,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -547671,7 +547671,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -547692,7 +547692,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -547713,7 +547713,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -547734,7 +547734,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -547755,7 +547755,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -547776,7 +547776,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -547797,7 +547797,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -547818,7 +547818,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -547847,7 +547847,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -547876,7 +547876,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -547897,7 +547897,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -547918,7 +547918,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -547947,7 +547947,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -547976,7 +547976,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -547997,7 +547997,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -548018,7 +548018,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -548039,7 +548039,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -548060,7 +548060,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -548081,7 +548081,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -548102,7 +548102,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -548123,7 +548123,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -548144,7 +548144,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -548165,7 +548165,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -548186,7 +548186,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamChannel", "ApiReferenceLink": null, @@ -548203,7 +548203,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMember", "ApiReferenceLink": null, @@ -548220,7 +548220,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -548237,7 +548237,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -548254,7 +548254,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -548271,7 +548271,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -548288,7 +548288,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -548305,7 +548305,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamChannelTab", "ApiReferenceLink": null, @@ -548322,7 +548322,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamMember", "ApiReferenceLink": null, @@ -548339,7 +548339,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamOperation", "ApiReferenceLink": null, @@ -548356,7 +548356,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -548373,7 +548373,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPhoto", "ApiReferenceLink": null, @@ -548390,7 +548390,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannel", "ApiReferenceLink": null, @@ -548407,7 +548407,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -548424,7 +548424,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -548441,7 +548441,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -548458,7 +548458,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -548475,7 +548475,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -548492,7 +548492,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -548509,7 +548509,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -548526,7 +548526,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -548543,7 +548543,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -548560,7 +548560,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -548577,7 +548577,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -548594,7 +548594,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleShift", "ApiReferenceLink": null, @@ -548611,7 +548611,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -548628,7 +548628,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -548645,7 +548645,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -548662,7 +548662,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -548679,7 +548679,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamTag", "ApiReferenceLink": null, @@ -548696,7 +548696,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupTeamTagMember", "ApiReferenceLink": null, @@ -548713,7 +548713,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupThread", "ApiReferenceLink": null, @@ -548747,7 +548747,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupThreadPostExtension", "ApiReferenceLink": null, @@ -548764,7 +548764,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -548781,7 +548781,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityApiConnector", "ApiReferenceLink": null, @@ -548798,7 +548798,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -548815,7 +548815,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -548832,7 +548832,7 @@ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -548849,7 +548849,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -548866,7 +548866,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -548883,7 +548883,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowPostAttributeCollection", "ApiReferenceLink": null, @@ -548900,7 +548900,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowPostFederationSignup", "ApiReferenceLink": null, @@ -548917,7 +548917,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -548934,7 +548934,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -548951,7 +548951,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -548985,7 +548985,7 @@ "OutputType": "IMicrosoftGraphNamedLocation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -549027,7 +549027,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -549044,7 +549044,7 @@ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -549061,7 +549061,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -549078,7 +549078,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -549095,7 +549095,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -549112,7 +549112,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -549129,7 +549129,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -549146,7 +549146,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -549163,7 +549163,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -549180,7 +549180,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -549197,7 +549197,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -549214,7 +549214,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -549231,7 +549231,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval", "ApiReferenceLink": null, @@ -549248,7 +549248,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", "ApiReferenceLink": null, @@ -549265,7 +549265,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -549282,7 +549282,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -549299,7 +549299,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -549316,7 +549316,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -549333,7 +549333,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -549350,7 +549350,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -549367,7 +549367,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -549384,7 +549384,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -549401,7 +549401,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -549418,7 +549418,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowSetting", "ApiReferenceLink": null, @@ -549433,7 +549433,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -549450,7 +549450,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -549467,7 +549467,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -549484,7 +549484,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -549501,7 +549501,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -549518,7 +549518,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -549535,7 +549535,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -549552,7 +549552,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -549569,7 +549569,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -549586,7 +549586,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccess", "ApiReferenceLink": null, @@ -549601,7 +549601,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroup", "ApiReferenceLink": null, @@ -549616,7 +549616,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -549633,7 +549633,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", "ApiReferenceLink": null, @@ -549650,7 +549650,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -549667,7 +549667,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -549684,7 +549684,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -549701,7 +549701,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -549718,7 +549718,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -549735,7 +549735,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -549752,7 +549752,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -549769,7 +549769,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -549790,7 +549790,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -549807,7 +549807,7 @@ "OutputType": "IMicrosoftGraphAgreementFile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -549824,7 +549824,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -549841,7 +549841,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -549858,7 +549858,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityProvider", "ApiReferenceLink": null, @@ -549875,7 +549875,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -549892,7 +549892,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgInformationProtection", "ApiReferenceLink": null, @@ -549907,7 +549907,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -549924,7 +549924,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -549941,7 +549941,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgInvitation", "ApiReferenceLink": null, @@ -549958,7 +549958,7 @@ "OutputType": "IMicrosoftGraphInvitation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgInvitationInvitedUserMailboxSetting", "ApiReferenceLink": null, @@ -549975,7 +549975,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-update?view=graph-rest-1.0", @@ -550009,7 +550009,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgOrganization", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-update?view=graph-rest-1.0", @@ -550051,7 +550051,7 @@ "OutputType": "IMicrosoftGraphOrganization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgOrganizationBranding", "ApiReferenceLink": null, @@ -550085,7 +550085,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBranding" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -550119,7 +550119,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgOrganizationExtension", "ApiReferenceLink": null, @@ -550136,7 +550136,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlace", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/place-update?view=graph-rest-1.0", @@ -550153,7 +550153,7 @@ "OutputType": "IMicrosoftGraphPlace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -550170,7 +550170,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlanner", "ApiReferenceLink": null, @@ -550185,7 +550185,7 @@ "OutputType": "IMicrosoftGraphPlanner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlannerBucket", "ApiReferenceLink": null, @@ -550227,7 +550227,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlannerPlan", "ApiReferenceLink": null, @@ -550269,7 +550269,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlannerPlanDetail", "ApiReferenceLink": null, @@ -550311,7 +550311,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlannerTask", "ApiReferenceLink": null, @@ -550353,7 +550353,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlannerTaskAssignedToTaskBoardFormat", "ApiReferenceLink": null, @@ -550395,7 +550395,7 @@ "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlannerTaskBucketTaskBoardFormat", "ApiReferenceLink": null, @@ -550437,7 +550437,7 @@ "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlannerTaskDetail", "ApiReferenceLink": null, @@ -550479,7 +550479,7 @@ "OutputType": "IMicrosoftGraphPlannerTaskDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPlannerTaskProgressTaskBoardFormat", "ApiReferenceLink": null, @@ -550521,7 +550521,7 @@ "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -550555,7 +550555,7 @@ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyAdminConsentRequestPolicy", "ApiReferenceLink": null, @@ -550570,7 +550570,7 @@ "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -550604,7 +550604,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyAuthenticationFlowPolicy", "ApiReferenceLink": null, @@ -550619,7 +550619,7 @@ "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyAuthenticationMethodPolicy", "ApiReferenceLink": null, @@ -550634,7 +550634,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -550651,7 +550651,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -550685,7 +550685,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgPolicyAuthenticationStrengthPolicyAllowedCombination", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-updateallowedcombinations?view=graph-rest-1.0", @@ -550719,7 +550719,7 @@ "OutputType": "IMicrosoftGraphUpdateAllowedCombinationsResult" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -550736,7 +550736,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyAuthorizationPolicy", "ApiReferenceLink": null, @@ -550751,7 +550751,7 @@ "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -550785,7 +550785,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicy", "ApiReferenceLink": null, @@ -550800,7 +550800,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyDefault", "ApiReferenceLink": null, @@ -550815,7 +550815,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -550832,7 +550832,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyTemplate", "ApiReferenceLink": null, @@ -550847,7 +550847,7 @@ "OutputType": "IMicrosoftGraphPolicyTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", "ApiReferenceLink": null, @@ -550862,7 +550862,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", "ApiReferenceLink": null, @@ -550877,7 +550877,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyDefaultAppManagementPolicy", "ApiReferenceLink": null, @@ -550909,7 +550909,7 @@ "OutputType": "IMicrosoftGraphTenantAppManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -550926,7 +550926,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -550960,7 +550960,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "ApiReferenceLink": null, @@ -550992,7 +550992,7 @@ "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -551009,7 +551009,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -551026,7 +551026,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -551043,7 +551043,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -551060,7 +551060,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -551077,7 +551077,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -551094,7 +551094,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -551128,7 +551128,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -551162,7 +551162,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -551196,7 +551196,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrint", "ApiReferenceLink": null, @@ -551211,7 +551211,7 @@ "OutputType": "IMicrosoftGraphPrint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintConnector", "ApiReferenceLink": null, @@ -551228,7 +551228,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintOperation", "ApiReferenceLink": null, @@ -551245,7 +551245,7 @@ "OutputType": "IMicrosoftGraphPrintOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintPrinter", "ApiReferenceLink": null, @@ -551279,7 +551279,7 @@ "OutputType": "IMicrosoftGraphPrinter" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintPrinterJob", "ApiReferenceLink": null, @@ -551321,7 +551321,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -551338,7 +551338,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintPrinterJobTask", "ApiReferenceLink": null, @@ -551355,7 +551355,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -551372,7 +551372,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintService", "ApiReferenceLink": null, @@ -551389,7 +551389,7 @@ "OutputType": "IMicrosoftGraphPrintService" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintServiceEndpoint", "ApiReferenceLink": null, @@ -551406,7 +551406,7 @@ "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintShare", "ApiReferenceLink": null, @@ -551423,7 +551423,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintShareAllowedUserMailboxSetting", "ApiReferenceLink": null, @@ -551440,7 +551440,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintShareJob", "ApiReferenceLink": null, @@ -551457,7 +551457,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintShareJobDocument", "ApiReferenceLink": null, @@ -551474,7 +551474,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintShareJobTask", "ApiReferenceLink": null, @@ -551491,7 +551491,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintTaskDefinition", "ApiReferenceLink": null, @@ -551508,7 +551508,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -551525,7 +551525,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -551542,7 +551542,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrivacySubjectRightsRequestApproverMailboxSetting", "ApiReferenceLink": null, @@ -551559,7 +551559,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting", "ApiReferenceLink": null, @@ -551576,7 +551576,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -551593,7 +551593,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -551610,7 +551610,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgReportPartnerBilling", "ApiReferenceLink": null, @@ -551625,7 +551625,7 @@ "OutputType": "IMicrosoftGraphPartnersBilling" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -551642,7 +551642,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -551659,7 +551659,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgReportPartnerBillingReconciliation", "ApiReferenceLink": null, @@ -551674,7 +551674,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingReconciliation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgReportPartnerBillingReconciliationBilled", "ApiReferenceLink": null, @@ -551689,7 +551689,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgReportPartnerBillingUsage", "ApiReferenceLink": null, @@ -551704,7 +551704,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgReportPartnerBillingUsageBilled", "ApiReferenceLink": null, @@ -551719,7 +551719,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgReportPartnerBillingUsageUnbilled", "ApiReferenceLink": null, @@ -551734,7 +551734,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRiskDetection", "ApiReferenceLink": null, @@ -551751,7 +551751,7 @@ "OutputType": "IMicrosoftGraphRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRiskyServicePrincipal", "ApiReferenceLink": null, @@ -551768,7 +551768,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -551785,7 +551785,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRiskyUser", "ApiReferenceLink": null, @@ -551802,7 +551802,7 @@ "OutputType": "IMicrosoftGraphRiskyUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRiskyUserHistory", "ApiReferenceLink": null, @@ -551819,7 +551819,7 @@ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagement", "ApiReferenceLink": null, @@ -551851,7 +551851,7 @@ "OutputType": "IMicrosoftGraphRoleManagement" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectory", "ApiReferenceLink": null, @@ -551866,7 +551866,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -551883,7 +551883,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -551900,7 +551900,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -551917,7 +551917,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -551934,7 +551934,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -551951,7 +551951,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -551968,7 +551968,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -551985,7 +551985,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -552019,7 +552019,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -552036,7 +552036,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -552053,7 +552053,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -552070,7 +552070,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -552087,7 +552087,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagement", "ApiReferenceLink": null, @@ -552102,7 +552102,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -552119,7 +552119,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -552136,7 +552136,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -552153,7 +552153,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -552170,7 +552170,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -552187,7 +552187,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -552204,7 +552204,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -552221,7 +552221,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -552238,7 +552238,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -552255,7 +552255,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -552272,7 +552272,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -552289,7 +552289,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -552306,7 +552306,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-update?view=graph-rest-1.0", @@ -552340,7 +552340,7 @@ "OutputType": "IMicrosoftGraphSchemaExtension" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSearchAcronym", "ApiReferenceLink": null, @@ -552374,7 +552374,7 @@ "OutputType": "IMicrosoftGraphSearchAcronym" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSearchBookmark", "ApiReferenceLink": null, @@ -552408,7 +552408,7 @@ "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSearchEntity", "ApiReferenceLink": null, @@ -552423,7 +552423,7 @@ "OutputType": "IMicrosoftGraphSearchEntity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSearchQna", "ApiReferenceLink": null, @@ -552440,7 +552440,7 @@ "OutputType": "IMicrosoftGraphSearchQna" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAlert", "ApiReferenceLink": null, @@ -552457,7 +552457,7 @@ "OutputType": "IMicrosoftGraphAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAlertV2", "ApiReferenceLink": null, @@ -552474,7 +552474,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -552491,7 +552491,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -552508,7 +552508,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -552525,7 +552525,7 @@ "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -552542,7 +552542,7 @@ "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -552559,7 +552559,7 @@ "OutputType": "IMicrosoftGraphLandingPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -552576,7 +552576,7 @@ "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -552593,7 +552593,7 @@ "OutputType": "IMicrosoftGraphLoginPage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -552610,7 +552610,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -552627,7 +552627,7 @@ "OutputType": "IMicrosoftGraphPayload" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -552644,7 +552644,7 @@ "OutputType": "IMicrosoftGraphTraining" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -552661,7 +552661,7 @@ "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCase", "ApiReferenceLink": null, @@ -552676,7 +552676,7 @@ "OutputType": "IMicrosoftGraphSecurityCasesRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -552710,7 +552710,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -552727,7 +552727,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodianIndex", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-updateindex?view=graph-rest-1.0", @@ -552759,7 +552759,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -552776,7 +552776,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -552793,7 +552793,7 @@ "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -552810,7 +552810,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -552827,7 +552827,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-updateindex?view=graph-rest-1.0", @@ -552859,7 +552859,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -552876,7 +552876,7 @@ "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -552893,7 +552893,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -552927,7 +552927,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -552961,7 +552961,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -552978,7 +552978,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseSetting", "ApiReferenceLink": null, @@ -552995,7 +552995,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -553029,7 +553029,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityIncident", "ApiReferenceLink": null, @@ -553046,7 +553046,7 @@ "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabel", "ApiReferenceLink": null, @@ -553061,7 +553061,7 @@ "OutputType": "IMicrosoftGraphSecurityLabelsRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabelAuthority", "ApiReferenceLink": null, @@ -553078,7 +553078,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabelCategory", "ApiReferenceLink": null, @@ -553095,7 +553095,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -553112,7 +553112,7 @@ "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabelCitation", "ApiReferenceLink": null, @@ -553129,7 +553129,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabelDepartment", "ApiReferenceLink": null, @@ -553146,7 +553146,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -553163,7 +553163,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -553180,7 +553180,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabelRetentionLabelDescriptor", "ApiReferenceLink": null, @@ -553197,7 +553197,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -553214,7 +553214,7 @@ "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecuritySecureScore", "ApiReferenceLink": null, @@ -553231,7 +553231,7 @@ "OutputType": "IMicrosoftGraphSecureScore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -553248,7 +553248,7 @@ "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -553265,7 +553265,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecuritySubjectRightsRequestApproverMailboxSetting", "ApiReferenceLink": null, @@ -553282,7 +553282,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting", "ApiReferenceLink": null, @@ -553299,7 +553299,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -553316,7 +553316,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligence", "ApiReferenceLink": null, @@ -553331,7 +553331,7 @@ "OutputType": "IMicrosoftGraphSecurityThreatIntelligence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -553348,7 +553348,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -553365,7 +553365,7 @@ "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -553382,7 +553382,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -553399,7 +553399,7 @@ "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -553416,7 +553416,7 @@ "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -553433,7 +553433,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -553450,7 +553450,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostReputation", "ApiReferenceLink": null, @@ -553467,7 +553467,7 @@ "OutputType": "IMicrosoftGraphSecurityHostReputation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -553484,7 +553484,7 @@ "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -553501,7 +553501,7 @@ "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -553518,7 +553518,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -553535,7 +553535,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -553552,7 +553552,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -553569,7 +553569,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -553586,7 +553586,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -553603,7 +553603,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -553620,7 +553620,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -553637,7 +553637,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -553654,7 +553654,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityTrigger", "ApiReferenceLink": null, @@ -553669,7 +553669,7 @@ "OutputType": "IMicrosoftGraphSecurityTriggersRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -553686,7 +553686,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityTriggerType", "ApiReferenceLink": null, @@ -553701,7 +553701,7 @@ "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -553718,7 +553718,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -553735,7 +553735,7 @@ "OutputType": "IMicrosoftGraphServiceHealth" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -553752,7 +553752,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -553769,7 +553769,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -553786,7 +553786,7 @@ "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -553803,7 +553803,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0", @@ -553845,7 +553845,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -553862,7 +553862,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -553879,7 +553879,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0", @@ -553896,7 +553896,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -553913,7 +553913,7 @@ "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -553930,7 +553930,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalRemoteDesktopSecurityConfiguration", "ApiReferenceLink": null, @@ -553947,7 +553947,7 @@ "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -553964,7 +553964,7 @@ "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -553981,7 +553981,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -553998,7 +553998,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -554015,7 +554015,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationJobSchema", "ApiReferenceLink": null, @@ -554032,7 +554032,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -554049,7 +554049,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -554066,7 +554066,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -554083,7 +554083,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -554100,7 +554100,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -554117,7 +554117,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -554134,7 +554134,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareList", "ApiReferenceLink": null, @@ -554151,7 +554151,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListColumn", "ApiReferenceLink": null, @@ -554168,7 +554168,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListContentType", "ApiReferenceLink": null, @@ -554185,7 +554185,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListContentTypeColumn", "ApiReferenceLink": null, @@ -554202,7 +554202,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -554219,7 +554219,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -554236,7 +554236,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListItem", "ApiReferenceLink": null, @@ -554257,7 +554257,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -554278,7 +554278,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -554299,7 +554299,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -554320,7 +554320,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListItemField", "ApiReferenceLink": null, @@ -554341,7 +554341,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -554362,7 +554362,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListItemVersion", "ApiReferenceLink": null, @@ -554383,7 +554383,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListItemVersionField", "ApiReferenceLink": null, @@ -554404,7 +554404,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -554421,7 +554421,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListOperation", "ApiReferenceLink": null, @@ -554438,7 +554438,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareListSubscription", "ApiReferenceLink": null, @@ -554455,7 +554455,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSharePermission", "ApiReferenceLink": null, @@ -554472,7 +554472,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": null, @@ -554489,7 +554489,7 @@ "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSite", "ApiReferenceLink": null, @@ -554506,7 +554506,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteAnalytic", "ApiReferenceLink": null, @@ -554523,7 +554523,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -554540,7 +554540,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -554557,7 +554557,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteColumn", "ApiReferenceLink": null, @@ -554591,7 +554591,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteContentType", "ApiReferenceLink": null, @@ -554625,7 +554625,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteContentTypeColumn", "ApiReferenceLink": null, @@ -554659,7 +554659,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -554676,7 +554676,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -554697,7 +554697,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -554718,7 +554718,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -554739,7 +554739,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteList", "ApiReferenceLink": null, @@ -554756,7 +554756,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListColumn", "ApiReferenceLink": null, @@ -554790,7 +554790,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListContentType", "ApiReferenceLink": null, @@ -554824,7 +554824,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -554858,7 +554858,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -554875,7 +554875,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -554892,7 +554892,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListItem", "ApiReferenceLink": null, @@ -554909,7 +554909,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -554926,7 +554926,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -554943,7 +554943,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -554960,7 +554960,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListItemField", "ApiReferenceLink": null, @@ -554977,7 +554977,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -554994,7 +554994,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListItemVersion", "ApiReferenceLink": null, @@ -555011,7 +555011,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListItemVersionField", "ApiReferenceLink": null, @@ -555028,7 +555028,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -555045,7 +555045,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListOperation", "ApiReferenceLink": null, @@ -555062,7 +555062,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteListSubscription", "ApiReferenceLink": null, @@ -555079,7 +555079,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -555096,7 +555096,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgSiteOnenoteNotebookSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -555113,7 +555113,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgSiteOnenoteNotebookSectionPageContent", "ApiReferenceLink": null, @@ -555130,7 +555130,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteOnenotePage", "ApiReferenceLink": null, @@ -555147,7 +555147,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgSiteOnenotePageContent", "ApiReferenceLink": null, @@ -555164,7 +555164,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteOnenoteSection", "ApiReferenceLink": null, @@ -555181,7 +555181,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -555198,7 +555198,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgSiteOnenoteSectionGroupSectionPageContent", "ApiReferenceLink": null, @@ -555215,7 +555215,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgSiteOnenoteSectionPageContent", "ApiReferenceLink": null, @@ -555232,7 +555232,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteOperation", "ApiReferenceLink": null, @@ -555249,7 +555249,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePage", "ApiReferenceLink": null, @@ -555266,7 +555266,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -555283,7 +555283,7 @@ "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -555300,7 +555300,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -555317,7 +555317,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -555334,7 +555334,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -555351,7 +555351,7 @@ "OutputType": "IMicrosoftGraphVerticalSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -555368,7 +555368,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -555385,7 +555385,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -555402,7 +555402,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -555419,7 +555419,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -555436,7 +555436,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -555453,7 +555453,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSitePermission", "ApiReferenceLink": null, @@ -555470,7 +555470,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStore", "ApiReferenceLink": null, @@ -555491,7 +555491,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroup", "ApiReferenceLink": null, @@ -555512,7 +555512,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -555533,7 +555533,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -555562,7 +555562,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -555591,7 +555591,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -555612,7 +555612,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -555633,7 +555633,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -555654,7 +555654,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -555675,7 +555675,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -555696,7 +555696,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -555717,7 +555717,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSet", "ApiReferenceLink": null, @@ -555738,7 +555738,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -555767,7 +555767,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -555796,7 +555796,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -555817,7 +555817,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -555838,7 +555838,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -555867,7 +555867,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -555896,7 +555896,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -555917,7 +555917,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -555938,7 +555938,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -555959,7 +555959,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -555980,7 +555980,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -556001,7 +556001,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -556022,7 +556022,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -556043,7 +556043,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -556064,7 +556064,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -556085,7 +556085,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -556106,7 +556106,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSubscribedSku", "ApiReferenceLink": null, @@ -556123,7 +556123,7 @@ "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgSubscription", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-update?view=graph-rest-1.0", @@ -556140,7 +556140,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-update?view=graph-rest-1.0", @@ -556190,7 +556190,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamChannel", "ApiReferenceLink": null, @@ -556240,7 +556240,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamChannelMember", "ApiReferenceLink": null, @@ -556290,7 +556290,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamChannelMessage", "ApiReferenceLink": null, @@ -556307,7 +556307,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamChannelMessageReply", "ApiReferenceLink": null, @@ -556324,7 +556324,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -556341,7 +556341,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -556358,7 +556358,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamChannelTab", "ApiReferenceLink": null, @@ -556440,7 +556440,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgTeamInstalledApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0", @@ -556554,7 +556554,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamMember", "ApiReferenceLink": null, @@ -556604,7 +556604,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamOperation", "ApiReferenceLink": null, @@ -556621,7 +556621,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamPermissionGrant", "ApiReferenceLink": null, @@ -556638,7 +556638,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamPhoto", "ApiReferenceLink": null, @@ -556655,7 +556655,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannel", "ApiReferenceLink": null, @@ -556672,7 +556672,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -556689,7 +556689,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -556706,7 +556706,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -556723,7 +556723,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -556740,7 +556740,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -556757,7 +556757,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -556774,7 +556774,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -556791,7 +556791,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -556808,7 +556808,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -556825,7 +556825,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamScheduleSchedulingGroup", "ApiReferenceLink": null, @@ -556842,7 +556842,7 @@ "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamScheduleShift", "ApiReferenceLink": null, @@ -556859,7 +556859,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -556876,7 +556876,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamScheduleTimeOff", "ApiReferenceLink": null, @@ -556893,7 +556893,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamScheduleTimeOffReason", "ApiReferenceLink": null, @@ -556910,7 +556910,7 @@ "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamScheduleTimeOffRequest", "ApiReferenceLink": null, @@ -556927,7 +556927,7 @@ "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamTag", "ApiReferenceLink": null, @@ -556961,7 +556961,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamTagMember", "ApiReferenceLink": null, @@ -556978,7 +556978,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamwork", "ApiReferenceLink": null, @@ -556993,7 +556993,7 @@ "OutputType": "IMicrosoftGraphTeamwork" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedChat", "ApiReferenceLink": null, @@ -557010,7 +557010,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -557027,7 +557027,7 @@ "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -557044,7 +557044,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -557061,7 +557061,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -557078,7 +557078,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -557095,7 +557095,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -557112,7 +557112,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -557129,7 +557129,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -557146,7 +557146,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -557163,7 +557163,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkTeamAppSetting", "ApiReferenceLink": null, @@ -557178,7 +557178,7 @@ "OutputType": "IMicrosoftGraphTeamsAppSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -557195,7 +557195,7 @@ "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -557212,7 +557212,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -557229,7 +557229,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -557246,7 +557246,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -557263,7 +557263,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -557280,7 +557280,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -557297,7 +557297,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTenantRelationshipMultiTenantOrganizationJoinRequest", "ApiReferenceLink": null, @@ -557312,7 +557312,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -557329,7 +557329,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-update?view=graph-rest-1.0", @@ -557419,7 +557419,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserActivity", "ApiReferenceLink": null, @@ -557436,7 +557436,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserActivityHistoryItem", "ApiReferenceLink": null, @@ -557453,7 +557453,7 @@ "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserAppRoleAssignment", "ApiReferenceLink": null, @@ -557470,7 +557470,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -557504,7 +557504,7 @@ "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserAuthenticationMethod", "ApiReferenceLink": null, @@ -557521,7 +557521,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserAuthenticationOperation", "ApiReferenceLink": null, @@ -557538,7 +557538,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -557572,7 +557572,7 @@ "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserCalendarGroup", "ApiReferenceLink": null, @@ -557589,7 +557589,7 @@ "OutputType": "IMicrosoftGraphCalendarGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserCalendarPermission", "ApiReferenceLink": null, @@ -557610,7 +557610,7 @@ "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChat", "ApiReferenceLink": null, @@ -557627,7 +557627,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgUserChatInstalledApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0", @@ -557644,7 +557644,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChatLastMessagePreview", "ApiReferenceLink": null, @@ -557661,7 +557661,7 @@ "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChatMember", "ApiReferenceLink": null, @@ -557678,7 +557678,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChatMessage", "ApiReferenceLink": null, @@ -557695,7 +557695,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -557712,7 +557712,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChatMessageReply", "ApiReferenceLink": null, @@ -557729,7 +557729,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -557746,7 +557746,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChatPermissionGrant", "ApiReferenceLink": null, @@ -557763,7 +557763,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChatPinnedMessage", "ApiReferenceLink": null, @@ -557780,7 +557780,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserChatTab", "ApiReferenceLink": null, @@ -557797,7 +557797,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContact", "ApiReferenceLink": null, @@ -557814,7 +557814,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactExtension", "ApiReferenceLink": null, @@ -557831,7 +557831,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactFolder", "ApiReferenceLink": null, @@ -557848,7 +557848,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -557865,7 +557865,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -557882,7 +557882,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -557899,7 +557899,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactFolderChildFolderContactPhoto", "ApiReferenceLink": null, @@ -557916,7 +557916,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactFolderContact", "ApiReferenceLink": null, @@ -557933,7 +557933,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -557950,7 +557950,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactFolderContactPhoto", "ApiReferenceLink": null, @@ -557967,7 +557967,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserContactPhoto", "ApiReferenceLink": null, @@ -557984,7 +557984,7 @@ "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -558001,7 +558001,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDrive", "ApiReferenceLink": null, @@ -558018,7 +558018,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558035,7 +558035,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItem", "ApiReferenceLink": null, @@ -558052,7 +558052,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemAnalytic", "ApiReferenceLink": null, @@ -558069,7 +558069,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -558086,7 +558086,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558103,7 +558103,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558120,7 +558120,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemListItem", "ApiReferenceLink": null, @@ -558137,7 +558137,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558154,7 +558154,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -558171,7 +558171,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -558188,7 +558188,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemField", "ApiReferenceLink": null, @@ -558205,7 +558205,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558222,7 +558222,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -558239,7 +558239,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -558256,7 +558256,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemPermission", "ApiReferenceLink": null, @@ -558273,7 +558273,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -558290,7 +558290,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemSubscription", "ApiReferenceLink": null, @@ -558307,7 +558307,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -558324,7 +558324,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveItemVersion", "ApiReferenceLink": null, @@ -558341,7 +558341,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558358,7 +558358,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveList", "ApiReferenceLink": null, @@ -558375,7 +558375,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListColumn", "ApiReferenceLink": null, @@ -558392,7 +558392,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListContentType", "ApiReferenceLink": null, @@ -558409,7 +558409,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -558426,7 +558426,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -558443,7 +558443,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558460,7 +558460,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListItem", "ApiReferenceLink": null, @@ -558477,7 +558477,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558494,7 +558494,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -558511,7 +558511,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -558528,7 +558528,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListItemField", "ApiReferenceLink": null, @@ -558545,7 +558545,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558562,7 +558562,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListItemVersion", "ApiReferenceLink": null, @@ -558579,7 +558579,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListItemVersionField", "ApiReferenceLink": null, @@ -558596,7 +558596,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558613,7 +558613,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListOperation", "ApiReferenceLink": null, @@ -558630,7 +558630,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveListSubscription", "ApiReferenceLink": null, @@ -558647,7 +558647,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRoot", "ApiReferenceLink": null, @@ -558664,7 +558664,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootAnalytic", "ApiReferenceLink": null, @@ -558681,7 +558681,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -558698,7 +558698,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558715,7 +558715,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558732,7 +558732,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootListItem", "ApiReferenceLink": null, @@ -558749,7 +558749,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558766,7 +558766,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -558783,7 +558783,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -558800,7 +558800,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemField", "ApiReferenceLink": null, @@ -558817,7 +558817,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -558834,7 +558834,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -558851,7 +558851,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -558868,7 +558868,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootPermission", "ApiReferenceLink": null, @@ -558885,7 +558885,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -558902,7 +558902,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootSubscription", "ApiReferenceLink": null, @@ -558919,7 +558919,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -558936,7 +558936,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserDriveRootVersion", "ApiReferenceLink": null, @@ -558953,7 +558953,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserEvent", "ApiReferenceLink": null, @@ -558970,7 +558970,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserEventExtension", "ApiReferenceLink": null, @@ -558987,7 +558987,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserEventInstanceExtension", "ApiReferenceLink": null, @@ -559004,7 +559004,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserExtension", "ApiReferenceLink": null, @@ -559021,7 +559021,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserInferenceClassification", "ApiReferenceLink": null, @@ -559038,7 +559038,7 @@ "OutputType": "IMicrosoftGraphInferenceClassification" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserInferenceClassificationOverride", "ApiReferenceLink": null, @@ -559055,7 +559055,7 @@ "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserLicenseDetail", "ApiReferenceLink": null, @@ -559072,7 +559072,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMailboxSetting", "ApiReferenceLink": null, @@ -559089,7 +559089,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMailFolder", "ApiReferenceLink": null, @@ -559106,7 +559106,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -559123,7 +559123,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -559140,7 +559140,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -559157,7 +559157,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMailFolderChildFolderMessageRule", "ApiReferenceLink": null, @@ -559174,7 +559174,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMailFolderMessage", "ApiReferenceLink": null, @@ -559191,7 +559191,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -559208,7 +559208,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMailFolderMessageRule", "ApiReferenceLink": null, @@ -559225,7 +559225,7 @@ "OutputType": "IMicrosoftGraphMessageRule" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserManagedDevice", "ApiReferenceLink": null, @@ -559242,7 +559242,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserManagedDeviceCategory", "ApiReferenceLink": null, @@ -559259,7 +559259,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -559276,7 +559276,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -559293,7 +559293,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -559310,7 +559310,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgUserManagedDeviceWindowsDeviceAccount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-updatewindowsdeviceaccount?view=graph-rest-1.0", @@ -559327,7 +559327,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -559344,7 +559344,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -559361,7 +559361,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMessage", "ApiReferenceLink": null, @@ -559378,7 +559378,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserMessageExtension", "ApiReferenceLink": null, @@ -559395,7 +559395,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOnenoteNotebook", "ApiReferenceLink": null, @@ -559412,7 +559412,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOnenotePage", "ApiReferenceLink": null, @@ -559429,7 +559429,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgUserOnenotePageContent", "ApiReferenceLink": null, @@ -559446,7 +559446,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOnenoteSection", "ApiReferenceLink": null, @@ -559463,7 +559463,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -559480,7 +559480,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOnlineMeeting", "ApiReferenceLink": null, @@ -559514,7 +559514,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -559531,7 +559531,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -559548,7 +559548,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -559565,7 +559565,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -559582,7 +559582,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserOutlookMasterCategory", "ApiReferenceLink": null, @@ -559599,7 +559599,7 @@ "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "POST", "Command": "Update-MgUserPassword", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-changepassword?view=graph-rest-1.0", @@ -559616,7 +559616,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserPlanner", "ApiReferenceLink": null, @@ -559650,7 +559650,7 @@ "OutputType": "IMicrosoftGraphPlannerUser" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserPresence", "ApiReferenceLink": null, @@ -559667,7 +559667,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -559684,7 +559684,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserSetting", "ApiReferenceLink": null, @@ -559718,7 +559718,7 @@ "OutputType": "IMicrosoftGraphUserSettings" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserSettingShiftPreference", "ApiReferenceLink": null, @@ -559752,7 +559752,7 @@ "OutputType": "IMicrosoftGraphShiftPreferences" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserSettingWindows", "ApiReferenceLink": null, @@ -559769,7 +559769,7 @@ "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -559786,7 +559786,7 @@ "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserTeamwork", "ApiReferenceLink": null, @@ -559803,7 +559803,7 @@ "OutputType": "IMicrosoftGraphUserTeamwork" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -559820,7 +559820,7 @@ "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserTodoList", "ApiReferenceLink": null, @@ -559854,7 +559854,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserTodoListExtension", "ApiReferenceLink": null, @@ -559871,7 +559871,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserTodoListTask", "ApiReferenceLink": null, @@ -559905,7 +559905,7 @@ "OutputType": "IMicrosoftGraphTodoTask" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserTodoListTaskAttachmentSession", "ApiReferenceLink": null, @@ -559922,7 +559922,7 @@ "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserTodoListTaskChecklistItem", "ApiReferenceLink": null, @@ -559956,7 +559956,7 @@ "OutputType": "IMicrosoftGraphChecklistItem" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserTodoListTaskExtension", "ApiReferenceLink": null, @@ -559973,7 +559973,7 @@ "OutputType": null }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgUserTodoListTaskLinkedResource", "ApiReferenceLink": null, @@ -560007,7 +560007,7 @@ "OutputType": "IMicrosoftGraphLinkedResource" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgVirtualEvent", "ApiReferenceLink": null, @@ -560024,7 +560024,7 @@ "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgVirtualEventSession", "ApiReferenceLink": null, @@ -560041,7 +560041,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -560058,7 +560058,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -560075,7 +560075,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgVirtualEventWebinar", "ApiReferenceLink": null, @@ -560092,7 +560092,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -560109,7 +560109,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -560126,7 +560126,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -560143,7 +560143,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "RHV", + "CommandAlias": null, "Method": "PATCH", "Command": "Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -560159,4 +560159,4 @@ "Permissions": [], "OutputType": "IMicrosoftGraphAttendanceRecord" } -] +] \ No newline at end of file From 1b35d505bd694bac22f8713c91aac7a523bf47b1 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Wed, 8 May 2024 08:52:28 +0300 Subject: [PATCH 08/10] Added mising aliasing --- src/Applications/Applications.md | 2 +- src/readme.graph.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Applications/Applications.md b/src/Applications/Applications.md index cb6ed822ed..52392a332e 100644 --- a/src/Applications/Applications.md +++ b/src/Applications/Applications.md @@ -31,5 +31,5 @@ directive: 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$ + - 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/readme.graph.md b/src/readme.graph.md index 265470082c..88aa90bebd 100644 --- a/src/readme.graph.md +++ b/src/readme.graph.md @@ -834,5 +834,10 @@ directive: subject: UserDeviceRegisteredUserDirectoryObjectByRef set: alias: ${verb}-Mg${subject-prefix}UserDeviceRegisteredUserByRef + - where: + verb: Remove + subject: OnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupOnPremiseAgentGroupByRef + set: + alias: ${verb}-Mg${subject-prefix}OnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef ``` From 8857f332ac3383fa1d83dc2046327d3fb762b1f7 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Wed, 8 May 2024 08:56:46 +0300 Subject: [PATCH 09/10] Updated alias for Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupOnPremiseAgentGroupByRef --- .../custom/common/MgCommandMetadata.json | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json index c1faada29a..591c26bec5 100644 --- a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json +++ b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json @@ -440862,22 +440862,7 @@ "OutputType": null }, { - "CommandAlias": null, - "Method": "DELETE", - "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", - "ApiReferenceLink": null, - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", - "ApiVersion": "beta", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "Module": "Beta.Applications", - "Permissions": [], - "OutputType": null - }, - { - "CommandAlias": null, + "CommandAlias": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupOnPremiseAgentGroupByRef", "ApiReferenceLink": null, From 307cb885e62d82f8166e440d6074afc0efed5855 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Wed, 8 May 2024 17:27:58 +0300 Subject: [PATCH 10/10] Updated metadata json file and metadata generation file to check for aliases with -Mg prefix --- .../custom/common/MgCommandMetadata.json | 16774 ++++++++-------- tools/PostGeneration/NewCommandMetadata.ps1 | 2 +- 2 files changed, 8388 insertions(+), 8388 deletions(-) diff --git a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json index 591c26bec5..63850950e8 100644 --- a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json +++ b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json @@ -10606,7 +10606,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Find-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyByMethodMode", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-findbymethodmode?view=graph-rest-beta", @@ -10621,7 +10621,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Find-MgBetaPolicyAuthenticationStrengthPolicyByMethodMode", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-findbymethodmode?view=graph-rest-beta", @@ -10964,7 +10964,7 @@ "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdge", "ApiReferenceLink": null, @@ -10978,7 +10978,7 @@ "OutputType": "IMicrosoftGraphEdge" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerMode", "ApiReferenceLink": null, @@ -10992,7 +10992,7 @@ "OutputType": "IMicrosoftGraphInternetExplorerMode" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -11024,7 +11024,7 @@ "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -11086,7 +11086,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -11118,7 +11118,7 @@ "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -11181,7 +11181,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -11213,7 +11213,7 @@ "OutputType": "IMicrosoftGraphBrowserSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -11276,7 +11276,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminPeople", "ApiReferenceLink": null, @@ -11307,7 +11307,7 @@ "OutputType": "IMicrosoftGraphPeopleAdminSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -11322,7 +11322,7 @@ "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -11384,7 +11384,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminPeoplePronoun", "ApiReferenceLink": null, @@ -11415,7 +11415,7 @@ "OutputType": "IMicrosoftGraphPronounsSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminSharepoint", "ApiReferenceLink": null, @@ -11429,7 +11429,7 @@ "OutputType": "IMicrosoftGraphSharepoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAdminSharepointSetting", "ApiReferenceLink": null, @@ -11489,7 +11489,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementAcceptance", "ApiReferenceLink": null, @@ -11504,7 +11504,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementAcceptance", "ApiReferenceLink": null, @@ -11533,7 +11533,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFile", "ApiReferenceLink": null, @@ -11565,7 +11565,7 @@ "OutputType": "IMicrosoftGraphAgreementFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFile", "ApiReferenceLink": null, @@ -11594,7 +11594,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileLocalization", "ApiReferenceLink": null, @@ -11609,7 +11609,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileLocalization", "ApiReferenceLink": null, @@ -11638,7 +11638,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -11653,7 +11653,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -11682,7 +11682,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileVersion", "ApiReferenceLink": null, @@ -11697,7 +11697,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAgreementFileVersion", "ApiReferenceLink": null, @@ -11726,7 +11726,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAllGroupSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-1.0", @@ -11741,7 +11741,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAllGroupTeamChannel", "ApiReferenceLink": null, @@ -11756,7 +11756,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAllGroupTeamChannel", "ApiReferenceLink": null, @@ -11785,7 +11785,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAllSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-1.0", @@ -11816,7 +11816,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAllTeamChannel", "ApiReferenceLink": null, @@ -11831,7 +11831,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAllTeamChannel", "ApiReferenceLink": null, @@ -12011,7 +12011,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAllUserChatMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chats-getallmessages?view=graph-rest-1.0", @@ -12043,7 +12043,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAppCatalogTeamApp", "ApiReferenceLink": null, @@ -12058,7 +12058,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAppCatalogTeamApp", "ApiReferenceLink": null, @@ -12168,7 +12168,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -12183,7 +12183,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -12197,7 +12197,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAppCatalogTeamAppDefinitionBot", "ApiReferenceLink": null, @@ -12252,7 +12252,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0", @@ -12308,7 +12308,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0", @@ -12371,7 +12371,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationAppManagementPolicy", "ApiReferenceLink": null, @@ -12414,7 +12414,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0", @@ -12493,7 +12493,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0", @@ -12620,7 +12620,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationCreatedOnBehalfOf", "ApiReferenceLink": null, @@ -12635,7 +12635,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-1.0", @@ -12690,7 +12690,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationExtensionProperty", "ApiReferenceLink": null, @@ -12738,7 +12738,7 @@ "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationExtensionProperty", "ApiReferenceLink": null, @@ -12849,7 +12849,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -12881,7 +12881,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -12920,7 +12920,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationFederatedIdentityCredentialByName", "ApiReferenceLink": null, @@ -13000,7 +13000,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -13015,7 +13015,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -13093,7 +13093,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwner", "ApiReferenceLink": null, @@ -13148,7 +13148,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerAsAppRoleAssignment", "ApiReferenceLink": null, @@ -13163,7 +13163,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerAsAppRoleAssignment", "ApiReferenceLink": null, @@ -13177,7 +13177,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerAsEndpoint", "ApiReferenceLink": null, @@ -13192,7 +13192,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerAsEndpoint", "ApiReferenceLink": null, @@ -13206,7 +13206,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -13221,7 +13221,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -13235,7 +13235,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerAsUser", "ApiReferenceLink": null, @@ -13250,7 +13250,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationOwnerAsUser", "ApiReferenceLink": null, @@ -13435,7 +13435,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronization", "ApiReferenceLink": null, @@ -13484,7 +13484,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -13499,7 +13499,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -13513,7 +13513,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -13558,7 +13558,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobSchema", "ApiReferenceLink": null, @@ -13573,7 +13573,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -13588,7 +13588,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -13632,7 +13632,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -13672,7 +13672,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -13751,7 +13751,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -13791,7 +13791,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -13806,7 +13806,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -13835,7 +13835,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0", @@ -13850,7 +13850,7 @@ "OutputType": "IMicrosoftGraphApplicationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0", @@ -13878,7 +13878,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationTokenIssuancePolicy", "ApiReferenceLink": null, @@ -14044,7 +14044,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgApplicationTokenLifetimePolicy", "ApiReferenceLink": null, @@ -14210,7 +14210,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAuditLogDirectoryAudit", "ApiReferenceLink": null, @@ -14242,7 +14242,7 @@ "OutputType": "IMicrosoftGraphDirectoryAudit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAuditLogDirectoryAudit", "ApiReferenceLink": null, @@ -14304,7 +14304,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAuditLogProvisioning", "ApiReferenceLink": null, @@ -14319,7 +14319,7 @@ "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAuditLogProvisioning", "ApiReferenceLink": null, @@ -14381,7 +14381,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAuditLogSignIn", "ApiReferenceLink": null, @@ -14413,7 +14413,7 @@ "OutputType": "IMicrosoftGraphSignIn" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgAuditLogSignIn", "ApiReferenceLink": null, @@ -14475,7 +14475,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReview", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-get?view=graph-rest-beta", @@ -14515,7 +14515,7 @@ "OutputType": "IMicrosoftGraphAccessReview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReview", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-list?view=graph-rest-beta", @@ -14593,7 +14593,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewDecision", "ApiReferenceLink": null, @@ -14608,7 +14608,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewDecision", "ApiReferenceLink": null, @@ -14687,7 +14687,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstance", "ApiReferenceLink": null, @@ -14702,7 +14702,7 @@ "OutputType": "IMicrosoftGraphAccessReview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstance", "ApiReferenceLink": null, @@ -14731,7 +14731,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceDecision", "ApiReferenceLink": null, @@ -14746,7 +14746,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceDecision", "ApiReferenceLink": null, @@ -14775,7 +14775,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceMyDecision", "ApiReferenceLink": null, @@ -14790,7 +14790,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceMyDecision", "ApiReferenceLink": null, @@ -14819,7 +14819,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceReviewer", "ApiReferenceLink": null, @@ -14834,7 +14834,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceReviewer", "ApiReferenceLink": null, @@ -14863,7 +14863,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewMyDecision", "ApiReferenceLink": null, @@ -14878,7 +14878,7 @@ "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewMyDecision", "ApiReferenceLink": null, @@ -14957,7 +14957,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewReviewer", "ApiReferenceLink": null, @@ -14972,7 +14972,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAccessReviewReviewer", "ApiReferenceLink": null, @@ -15051,7 +15051,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdge", "ApiReferenceLink": null, @@ -15065,7 +15065,7 @@ "OutputType": "IMicrosoftGraphEdge" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerMode", "ApiReferenceLink": null, @@ -15079,7 +15079,7 @@ "OutputType": "IMicrosoftGraphInternetExplorerMode" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -15111,7 +15111,7 @@ "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList", "ApiReferenceLink": null, @@ -15173,7 +15173,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -15205,7 +15205,7 @@ "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", "ApiReferenceLink": null, @@ -15268,7 +15268,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -15300,7 +15300,7 @@ "OutputType": "IMicrosoftGraphBrowserSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite", "ApiReferenceLink": null, @@ -15363,7 +15363,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnit", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-get?view=graph-rest-beta", @@ -15411,7 +15411,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnit", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-administrativeunits?view=graph-rest-beta", @@ -15520,7 +15520,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-delta?view=graph-rest-beta", @@ -15567,7 +15567,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -15582,7 +15582,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -15611,7 +15611,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMember", "ApiReferenceLink": null, @@ -15658,7 +15658,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsApplication", "ApiReferenceLink": null, @@ -15673,7 +15673,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsApplication", "ApiReferenceLink": null, @@ -15720,7 +15720,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsDevice", "ApiReferenceLink": null, @@ -15735,7 +15735,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsDevice", "ApiReferenceLink": null, @@ -15782,7 +15782,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsGroup", "ApiReferenceLink": null, @@ -15797,7 +15797,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsGroup", "ApiReferenceLink": null, @@ -15844,7 +15844,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsOrgContact", "ApiReferenceLink": null, @@ -15859,7 +15859,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsOrgContact", "ApiReferenceLink": null, @@ -15906,7 +15906,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -15921,7 +15921,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -15968,7 +15968,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsUser", "ApiReferenceLink": null, @@ -15983,7 +15983,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsUser", "ApiReferenceLink": null, @@ -16447,7 +16447,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -16495,7 +16495,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -16605,7 +16605,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminPeople", "ApiReferenceLink": null, @@ -16636,7 +16636,7 @@ "OutputType": "IMicrosoftGraphPeopleAdminSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminPeopleItemInsight", "ApiReferenceLink": null, @@ -16667,7 +16667,7 @@ "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -16682,7 +16682,7 @@ "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminPeopleProfileCardProperty", "ApiReferenceLink": null, @@ -16744,7 +16744,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminPeoplePronoun", "ApiReferenceLink": null, @@ -16775,7 +16775,7 @@ "OutputType": "IMicrosoftGraphPronounsSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminReportSetting", "ApiReferenceLink": null, @@ -16806,7 +16806,7 @@ "OutputType": "IMicrosoftGraphAdminReportSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminSharepoint", "ApiReferenceLink": null, @@ -16820,7 +16820,7 @@ "OutputType": "IMicrosoftGraphSharepoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAdminSharepointSetting", "ApiReferenceLink": null, @@ -16880,7 +16880,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementAcceptance", "ApiReferenceLink": null, @@ -16895,7 +16895,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementAcceptance", "ApiReferenceLink": null, @@ -16924,7 +16924,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFile", "ApiReferenceLink": null, @@ -16956,7 +16956,7 @@ "OutputType": "IMicrosoftGraphAgreementFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFile", "ApiReferenceLink": null, @@ -16985,7 +16985,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalization", "ApiReferenceLink": null, @@ -17000,7 +17000,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalization", "ApiReferenceLink": null, @@ -17029,7 +17029,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -17044,7 +17044,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -17073,7 +17073,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileVersion", "ApiReferenceLink": null, @@ -17088,7 +17088,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAgreementFileVersion", "ApiReferenceLink": null, @@ -17117,7 +17117,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAllGroupSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-beta", @@ -17132,7 +17132,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAllGroupTeamChannel", "ApiReferenceLink": null, @@ -17147,7 +17147,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAllGroupTeamChannel", "ApiReferenceLink": null, @@ -17176,7 +17176,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAllSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-beta", @@ -17207,7 +17207,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAllTeamChannel", "ApiReferenceLink": null, @@ -17222,7 +17222,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAllTeamChannel", "ApiReferenceLink": null, @@ -17402,7 +17402,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAllUserChatMessage", "ApiReferenceLink": null, @@ -17434,7 +17434,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAllUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -17449,7 +17449,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAllUserOnlineMeetingTranscript", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-beta", @@ -17464,7 +17464,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamApp", "ApiReferenceLink": null, @@ -17479,7 +17479,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamApp", "ApiReferenceLink": null, @@ -17589,7 +17589,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -17604,7 +17604,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinition", "ApiReferenceLink": null, @@ -17618,7 +17618,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionBot", "ApiReferenceLink": null, @@ -17658,7 +17658,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIcon", "ApiReferenceLink": null, @@ -17698,7 +17698,7 @@ "OutputType": "IMicrosoftGraphTeamsAppIcon" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent", "ApiReferenceLink": null, @@ -17755,7 +17755,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCard", "ApiReferenceLink": null, @@ -17770,7 +17770,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCard", "ApiReferenceLink": null, @@ -17799,7 +17799,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIcon", "ApiReferenceLink": null, @@ -17839,7 +17839,7 @@ "OutputType": "IMicrosoftGraphTeamsAppIcon" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent", "ApiReferenceLink": null, @@ -17881,7 +17881,7 @@ "OutputType": "IMicrosoftGraphTeamworkHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta", @@ -17937,7 +17937,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplication", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list?view=graph-rest-beta", @@ -18000,7 +18000,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationAppManagementPolicy", "ApiReferenceLink": null, @@ -18043,7 +18043,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta", @@ -18122,7 +18122,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta", @@ -18186,7 +18186,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationConnectorGroup", "ApiReferenceLink": null, @@ -18279,7 +18279,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationCreatedOnBehalfOf", "ApiReferenceLink": null, @@ -18294,7 +18294,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-beta", @@ -18349,7 +18349,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationExtensionProperty", "ApiReferenceLink": null, @@ -18397,7 +18397,7 @@ "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationExtensionProperty", "ApiReferenceLink": null, @@ -18508,7 +18508,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -18540,7 +18540,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationFederatedIdentityCredential", "ApiReferenceLink": null, @@ -18579,7 +18579,7 @@ "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationFederatedIdentityCredentialByName", "ApiReferenceLink": null, @@ -18659,7 +18659,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -18674,7 +18674,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -18752,7 +18752,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwner", "ApiReferenceLink": null, @@ -18807,7 +18807,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsEndpoint", "ApiReferenceLink": null, @@ -18822,7 +18822,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsEndpoint", "ApiReferenceLink": null, @@ -18836,7 +18836,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -18851,7 +18851,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -18865,7 +18865,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsUser", "ApiReferenceLink": null, @@ -18880,7 +18880,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsUser", "ApiReferenceLink": null, @@ -19050,7 +19050,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronization", "ApiReferenceLink": null, @@ -19099,7 +19099,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -19114,7 +19114,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJob", "ApiReferenceLink": null, @@ -19128,7 +19128,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -19173,7 +19173,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobSchema", "ApiReferenceLink": null, @@ -19188,7 +19188,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -19203,7 +19203,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -19247,7 +19247,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -19287,7 +19287,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplate", "ApiReferenceLink": null, @@ -19366,7 +19366,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -19406,7 +19406,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -19421,7 +19421,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -19450,7 +19450,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-beta", @@ -19465,7 +19465,7 @@ "OutputType": "IMicrosoftGraphApplicationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-beta", @@ -19493,7 +19493,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationTokenIssuancePolicy", "ApiReferenceLink": null, @@ -19659,7 +19659,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaApplicationTokenLifetimePolicy", "ApiReferenceLink": null, @@ -19840,7 +19840,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAudit", "ApiReferenceLink": null, @@ -19855,7 +19855,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeAudit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAudit", "ApiReferenceLink": null, @@ -19883,7 +19883,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogDirectoryAudit", "ApiReferenceLink": null, @@ -19915,7 +19915,7 @@ "OutputType": "IMicrosoftGraphDirectoryAudit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogDirectoryAudit", "ApiReferenceLink": null, @@ -19977,7 +19977,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogDirectoryProvisioning", "ApiReferenceLink": null, @@ -19992,7 +19992,7 @@ "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogDirectoryProvisioning", "ApiReferenceLink": null, @@ -20020,7 +20020,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogProvisioning", "ApiReferenceLink": null, @@ -20035,7 +20035,7 @@ "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogProvisioning", "ApiReferenceLink": null, @@ -20097,7 +20097,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogSignIn", "ApiReferenceLink": null, @@ -20129,7 +20129,7 @@ "OutputType": "IMicrosoftGraphSignIn" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaAuditLogSignIn", "ApiReferenceLink": null, @@ -20191,7 +20191,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusiness", "ApiReferenceLink": null, @@ -20241,7 +20241,7 @@ "OutputType": "IMicrosoftGraphBookingBusiness" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusiness", "ApiReferenceLink": null, @@ -20289,7 +20289,7 @@ "OutputType": "IMicrosoftGraphBookingBusiness" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessAppointment", "ApiReferenceLink": null, @@ -20339,7 +20339,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessAppointment", "ApiReferenceLink": null, @@ -20437,7 +20437,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -20454,7 +20454,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -20600,7 +20600,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCustomer", "ApiReferenceLink": null, @@ -20650,7 +20650,7 @@ "OutputType": "IMicrosoftGraphBookingCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCustomer", "ApiReferenceLink": null, @@ -20748,7 +20748,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -20798,7 +20798,7 @@ "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -20896,7 +20896,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessService", "ApiReferenceLink": null, @@ -20946,7 +20946,7 @@ "OutputType": "IMicrosoftGraphBookingService" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessService", "ApiReferenceLink": null, @@ -21102,7 +21102,7 @@ "OutputType": "IMicrosoftGraphStaffAvailabilityItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -21152,7 +21152,7 @@ "OutputType": "IMicrosoftGraphBookingStaffMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -21250,7 +21250,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingCurrency", "ApiReferenceLink": null, @@ -21300,7 +21300,7 @@ "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBookingCurrency", "ApiReferenceLink": null, @@ -21396,7 +21396,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessFlowTemplate", "ApiReferenceLink": null, @@ -21411,7 +21411,7 @@ "OutputType": "IMicrosoftGraphBusinessFlowTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessFlowTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessflowtemplate-list?view=graph-rest-beta", @@ -21489,7 +21489,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenario", "ApiReferenceLink": null, @@ -21537,7 +21537,7 @@ "OutputType": "IMicrosoftGraphBusinessScenario" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenario", "ApiReferenceLink": null, @@ -21584,7 +21584,7 @@ "OutputType": "IMicrosoftGraphBusinessScenario" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioByUniqueName", "ApiReferenceLink": null, @@ -21679,7 +21679,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlanner", "ApiReferenceLink": null, @@ -21761,7 +21761,7 @@ "OutputType": "IMicrosoftGraphBusinessScenarioPlanReference" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfiguration", "ApiReferenceLink": null, @@ -21809,7 +21809,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", "ApiReferenceLink": null, @@ -21857,7 +21857,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", "ApiReferenceLink": null, @@ -21952,7 +21952,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTask", "ApiReferenceLink": null, @@ -21984,7 +21984,7 @@ "OutputType": "IMicrosoftGraphBusinessScenarioTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTask", "ApiReferenceLink": null, @@ -22015,7 +22015,7 @@ "OutputType": "IMicrosoftGraphBusinessScenarioTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskAssignedToTaskBoardFormat", "ApiReferenceLink": null, @@ -22030,7 +22030,7 @@ "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskBucketTaskBoardFormat", "ApiReferenceLink": null, @@ -22045,7 +22045,7 @@ "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskConfiguration", "ApiReferenceLink": null, @@ -22125,7 +22125,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskDetail", "ApiReferenceLink": null, @@ -22140,7 +22140,7 @@ "OutputType": "IMicrosoftGraphPlannerTaskDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskProgressTaskBoardFormat", "ApiReferenceLink": null, @@ -22155,7 +22155,7 @@ "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get?view=graph-rest-beta", @@ -22235,7 +22235,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list?view=graph-rest-beta", @@ -22361,7 +22361,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatInstalledApp", "ApiReferenceLink": null, @@ -22457,7 +22457,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatInstalledApp", "ApiReferenceLink": null, @@ -22712,7 +22712,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatInstalledAppTeamApp", "ApiReferenceLink": null, @@ -22727,7 +22727,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -22742,7 +22742,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatLastMessagePreview", "ApiReferenceLink": null, @@ -22757,7 +22757,7 @@ "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMember", "ApiReferenceLink": null, @@ -22901,7 +22901,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMember", "ApiReferenceLink": null, @@ -23124,7 +23124,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessage", "ApiReferenceLink": null, @@ -23189,7 +23189,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessage", "ApiReferenceLink": null, @@ -23300,7 +23300,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -23364,7 +23364,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageHostedContent", "ApiReferenceLink": null, @@ -23438,7 +23438,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageHostedContent", "ApiReferenceLink": null, @@ -23581,7 +23581,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageReply", "ApiReferenceLink": null, @@ -23596,7 +23596,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageReply", "ApiReferenceLink": null, @@ -23625,7 +23625,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -23640,7 +23640,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -23657,7 +23657,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -23686,7 +23686,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatOperation", "ApiReferenceLink": null, @@ -23774,7 +23774,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatOperation", "ApiReferenceLink": null, @@ -23949,7 +23949,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatPermissionGrant", "ApiReferenceLink": null, @@ -23964,7 +23964,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatPermissionGrant", "ApiReferenceLink": null, @@ -24187,7 +24187,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatPinnedMessage", "ApiReferenceLink": null, @@ -24204,7 +24204,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatPinnedMessage", "ApiReferenceLink": null, @@ -24315,7 +24315,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatRetainedMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-getallretainedmessages?view=graph-rest-beta", @@ -24394,7 +24394,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatTab", "ApiReferenceLink": null, @@ -24474,7 +24474,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatTab", "ApiReferenceLink": null, @@ -24601,7 +24601,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaChatTabTeamApp", "ApiReferenceLink": null, @@ -24616,7 +24616,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCall", "ApiReferenceLink": null, @@ -24648,7 +24648,7 @@ "OutputType": "IMicrosoftGraphCall" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -24680,7 +24680,7 @@ "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -24743,7 +24743,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -24791,7 +24791,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -24900,7 +24900,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallOperation", "ApiReferenceLink": null, @@ -24915,7 +24915,7 @@ "OutputType": "IMicrosoftGraphCommsOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallOperation", "ApiReferenceLink": null, @@ -24944,7 +24944,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallParticipant", "ApiReferenceLink": null, @@ -24976,7 +24976,7 @@ "OutputType": "IMicrosoftGraphParticipant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallParticipant", "ApiReferenceLink": null, @@ -25039,7 +25039,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecord", "ApiReferenceLink": null, @@ -25068,7 +25068,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordOrganizerV2", "ApiReferenceLink": null, @@ -25098,7 +25098,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordParticipantV2", "ApiReferenceLink": null, @@ -25113,7 +25113,7 @@ "OutputType": "IMicrosoftGraphCallRecordsParticipant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordParticipantV2", "ApiReferenceLink": null, @@ -25157,7 +25157,7 @@ "OutputType": "IMicrosoftGraphCallRecordsPstnOnlineMeetingDialoutReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -25172,7 +25172,7 @@ "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -25231,7 +25231,7 @@ "OutputType": "IMicrosoftGraphCallRecordsSmsLogRow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -25248,7 +25248,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -25310,7 +25310,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -25327,7 +25327,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -25341,7 +25341,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -25358,7 +25358,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -25435,7 +25435,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingByJoinWebUrl", "ApiReferenceLink": null, @@ -25563,7 +25563,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -25607,7 +25607,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingDelta", "ApiReferenceLink": null, @@ -25622,7 +25622,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistration", "ApiReferenceLink": null, @@ -25637,7 +25637,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -25652,7 +25652,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -25681,7 +25681,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -25696,7 +25696,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -25725,7 +25725,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -25741,7 +25741,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -25785,7 +25785,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptDelta", "ApiReferenceLink": null, @@ -25830,7 +25830,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationPresence", "ApiReferenceLink": null, @@ -25845,7 +25845,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCommunicationPresence", "ApiReferenceLink": null, @@ -25955,7 +25955,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaCompliance", "ApiReferenceLink": null, @@ -25969,7 +25969,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscovery", "ApiReferenceLink": null, @@ -25983,7 +25983,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCase", "ApiReferenceLink": null, @@ -26015,7 +26015,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCase", "ApiReferenceLink": null, @@ -26077,7 +26077,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -26109,7 +26109,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCustodian" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -26172,7 +26172,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianLastIndexOperation", "ApiReferenceLink": null, @@ -26187,7 +26187,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseIndexOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -26219,7 +26219,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -26282,7 +26282,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceSite", "ApiReferenceLink": null, @@ -26297,7 +26297,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -26329,7 +26329,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -26392,7 +26392,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup", "ApiReferenceLink": null, @@ -26407,7 +26407,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -26436,7 +26436,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -26468,7 +26468,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -26531,7 +26531,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -26563,7 +26563,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryLegalHold" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -26626,7 +26626,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -26641,7 +26641,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -26704,7 +26704,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceSite", "ApiReferenceLink": null, @@ -26719,7 +26719,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "ApiReferenceLink": null, @@ -26734,7 +26734,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "ApiReferenceLink": null, @@ -26763,7 +26763,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup", "ApiReferenceLink": null, @@ -26778,7 +26778,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -26807,7 +26807,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -26822,7 +26822,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -26885,7 +26885,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -26917,7 +26917,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -26980,7 +26980,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceDataSource", "ApiReferenceLink": null, @@ -27012,7 +27012,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceLastIndexOperation", "ApiReferenceLink": null, @@ -27027,7 +27027,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseIndexOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -27042,7 +27042,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -27073,7 +27073,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperation", "ApiReferenceLink": null, @@ -27088,7 +27088,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseExportOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperation", "ApiReferenceLink": null, @@ -27102,7 +27102,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseExportOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperationReviewSet", "ApiReferenceLink": null, @@ -27164,7 +27164,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -27196,7 +27196,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -27259,7 +27259,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -27291,7 +27291,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -27354,7 +27354,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSetting", "ApiReferenceLink": null, @@ -27386,7 +27386,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection", "ApiReferenceLink": null, @@ -27418,7 +27418,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySourceCollection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection", "ApiReferenceLink": null, @@ -27449,7 +27449,7 @@ "OutputType": "IMicrosoftGraphEdiscoverySourceCollection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "ApiReferenceLink": null, @@ -27464,7 +27464,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "ApiReferenceLink": null, @@ -27527,7 +27527,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation", "ApiReferenceLink": null, @@ -27591,7 +27591,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource", "ApiReferenceLink": null, @@ -27606,7 +27606,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource", "ApiReferenceLink": null, @@ -27669,7 +27669,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation", "ApiReferenceLink": null, @@ -27701,7 +27701,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryEstimateStatisticsOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource", "ApiReferenceLink": null, @@ -27716,7 +27716,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource", "ApiReferenceLink": null, @@ -27779,7 +27779,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -27811,7 +27811,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -27842,7 +27842,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTag", "ApiReferenceLink": null, @@ -27857,7 +27857,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTag", "ApiReferenceLink": null, @@ -27952,7 +27952,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseTagParent", "ApiReferenceLink": null, @@ -27967,7 +27967,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContact", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-get?view=graph-rest-beta", @@ -28007,7 +28007,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContact", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-beta", @@ -28100,7 +28100,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-delta?view=graph-rest-beta", @@ -28139,7 +28139,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDirectReport", "ApiReferenceLink": null, @@ -28154,7 +28154,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDirectReport", "ApiReferenceLink": null, @@ -28201,7 +28201,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDirectReportAsOrgContact", "ApiReferenceLink": null, @@ -28216,7 +28216,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDirectReportAsOrgContact", "ApiReferenceLink": null, @@ -28230,7 +28230,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDirectReportAsUser", "ApiReferenceLink": null, @@ -28245,7 +28245,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactDirectReportAsUser", "ApiReferenceLink": null, @@ -28337,7 +28337,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactManager", "ApiReferenceLink": null, @@ -28597,7 +28597,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactMemberOf", "ApiReferenceLink": null, @@ -28612,7 +28612,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactMemberOf", "ApiReferenceLink": null, @@ -28659,7 +28659,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -28674,7 +28674,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -28688,7 +28688,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactMemberOfAsGroup", "ApiReferenceLink": null, @@ -28703,7 +28703,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactMemberOfAsGroup", "ApiReferenceLink": null, @@ -28795,7 +28795,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactServiceProvisioningError", "ApiReferenceLink": null, @@ -28824,7 +28824,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOf", "ApiReferenceLink": null, @@ -28839,7 +28839,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOf", "ApiReferenceLink": null, @@ -28878,7 +28878,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -28893,7 +28893,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -28907,7 +28907,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -28922,7 +28922,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -29006,7 +29006,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveReport", "ApiReferenceLink": null, @@ -29021,7 +29021,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContactTransitiveReport", "ApiReferenceLink": null, @@ -29065,7 +29065,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContract", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-get?view=graph-rest-beta", @@ -29097,7 +29097,7 @@ "OutputType": "IMicrosoftGraphContract" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContract", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-list?view=graph-rest-beta", @@ -29174,7 +29174,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaContractDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta", @@ -29254,7 +29254,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDataPolicyOperation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/datapolicyoperation-get?view=graph-rest-beta", @@ -29286,7 +29286,7 @@ "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDataPolicyOperation", "ApiReferenceLink": null, @@ -29314,7 +29314,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-beta", @@ -29362,7 +29362,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list?view=graph-rest-beta", @@ -43201,7 +43201,7 @@ "OutputType": "IMicrosoftGraphWindowsManagementApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceByDeviceId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-beta", @@ -43264,7 +43264,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceCommand", "ApiReferenceLink": null, @@ -43279,7 +43279,7 @@ "OutputType": "IMicrosoftGraphCommand" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceCommand", "ApiReferenceLink": null, @@ -43308,7 +43308,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceCommandResponsepayload", "ApiReferenceLink": null, @@ -43370,7 +43370,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delta?view=graph-rest-beta", @@ -43384,7 +43384,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceExtension", "ApiReferenceLink": null, @@ -43399,7 +43399,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceExtension", "ApiReferenceLink": null, @@ -43428,7 +43428,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagement", "ApiReferenceLink": null, @@ -43523,7 +43523,7 @@ "OutputType": "IMicrosoftGraphDeviceManagement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", "ApiReferenceLink": null, @@ -43554,7 +43554,7 @@ "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "ApiReferenceLink": null, @@ -43586,7 +43586,7 @@ "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "ApiReferenceLink": null, @@ -43648,7 +43648,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "ApiReferenceLink": null, @@ -43680,7 +43680,7 @@ "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "ApiReferenceLink": null, @@ -43742,7 +43742,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", "ApiReferenceLink": null, @@ -43774,7 +43774,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", "ApiReferenceLink": null, @@ -43836,7 +43836,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", "ApiReferenceLink": null, @@ -43868,7 +43868,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", "ApiReferenceLink": null, @@ -43930,7 +43930,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkSetting", "ApiReferenceLink": null, @@ -43961,7 +43961,7 @@ "OutputType": "IMicrosoftGraphAndroidForWorkSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "ApiReferenceLink": null, @@ -43992,7 +43992,7 @@ "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", "ApiReferenceLink": null, @@ -44024,7 +44024,7 @@ "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", "ApiReferenceLink": null, @@ -44086,7 +44086,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementApplePushNotificationCertificate", "ApiReferenceLink": null, @@ -44133,7 +44133,7 @@ "OutputType": "IMicrosoftGraphApplePushNotificationCertificate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", "ApiReferenceLink": null, @@ -44165,7 +44165,7 @@ "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", "ApiReferenceLink": null, @@ -44196,7 +44196,7 @@ "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "ApiReferenceLink": null, @@ -44228,7 +44228,7 @@ "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "ApiReferenceLink": null, @@ -44369,7 +44369,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignedRoleDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilter", "ApiReferenceLink": null, @@ -44401,7 +44401,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilter", "ApiReferenceLink": null, @@ -44590,7 +44590,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -44622,7 +44622,7 @@ "OutputType": "IMicrosoftGraphAuditEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -44747,7 +44747,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEvent", "ApiReferenceLink": null, @@ -44779,7 +44779,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEvent", "ApiReferenceLink": null, @@ -44841,7 +44841,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", "ApiReferenceLink": null, @@ -44873,7 +44873,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", "ApiReferenceLink": null, @@ -44936,7 +44936,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCartToClassAssociation", "ApiReferenceLink": null, @@ -44968,7 +44968,7 @@ "OutputType": "IMicrosoftGraphCartToClassAssociation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCartToClassAssociation", "ApiReferenceLink": null, @@ -45030,7 +45030,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategory", "ApiReferenceLink": null, @@ -45062,7 +45062,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategory", "ApiReferenceLink": null, @@ -45124,7 +45124,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategorySettingDefinition", "ApiReferenceLink": null, @@ -45156,7 +45156,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategorySettingDefinition", "ApiReferenceLink": null, @@ -45287,7 +45287,7 @@ "OutputType": "IMicrosoftGraphCertificateConnectorHealthMetricValue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -45335,7 +45335,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDevice", "ApiReferenceLink": null, @@ -45382,7 +45382,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -45397,7 +45397,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -45426,7 +45426,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCategory", "ApiReferenceLink": null, @@ -45471,7 +45471,7 @@ "OutputType": "IMicrosoftGraphCloudPcReviewStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -45486,7 +45486,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -45515,7 +45515,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -45530,7 +45530,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -45606,7 +45606,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedApp", "ApiReferenceLink": null, @@ -45621,7 +45621,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedApp", "ApiReferenceLink": null, @@ -45698,7 +45698,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -45713,7 +45713,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -45742,7 +45742,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -45757,7 +45757,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -45786,7 +45786,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -45801,7 +45801,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -45845,7 +45845,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -45860,7 +45860,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -45889,7 +45889,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -45904,7 +45904,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -45980,7 +45980,7 @@ "OutputType": "IMicrosoftGraphComanagedDevicesSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceUser", "ApiReferenceLink": null, @@ -45994,7 +45994,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -46009,7 +46009,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -46024,7 +46024,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -46053,7 +46053,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice", "ApiReferenceLink": null, @@ -46101,7 +46101,7 @@ "OutputType": "IMicrosoftGraphComanagementEligibleDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice", "ApiReferenceLink": null, @@ -46242,7 +46242,7 @@ "OutputType": "IMicrosoftGraphComanagementEligibleDevicesSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -46290,7 +46290,7 @@ "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -46384,7 +46384,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicy", "ApiReferenceLink": null, @@ -46416,7 +46416,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicy", "ApiReferenceLink": null, @@ -46447,7 +46447,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -46479,7 +46479,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -46573,7 +46573,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -46605,7 +46605,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -46668,7 +46668,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -46700,7 +46700,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -46763,7 +46763,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySetting", "ApiReferenceLink": null, @@ -46795,7 +46795,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySetting", "ApiReferenceLink": null, @@ -46858,7 +46858,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinition", "ApiReferenceLink": null, @@ -46873,7 +46873,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinition", "ApiReferenceLink": null, @@ -46902,7 +46902,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComplianceSetting", "ApiReferenceLink": null, @@ -46934,7 +46934,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementComplianceSetting", "ApiReferenceLink": null, @@ -46996,7 +46996,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConditionalAccessSetting", "ApiReferenceLink": null, @@ -47091,7 +47091,7 @@ "OutputType": "IMicrosoftGraphConfigManagerPolicySummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicy", "ApiReferenceLink": null, @@ -47123,7 +47123,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicy", "ApiReferenceLink": null, @@ -47154,7 +47154,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment", "ApiReferenceLink": null, @@ -47186,7 +47186,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment", "ApiReferenceLink": null, @@ -47310,7 +47310,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting", "ApiReferenceLink": null, @@ -47342,7 +47342,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting", "ApiReferenceLink": null, @@ -47405,7 +47405,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition", "ApiReferenceLink": null, @@ -47437,7 +47437,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition", "ApiReferenceLink": null, @@ -47500,7 +47500,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplate", "ApiReferenceLink": null, @@ -47532,7 +47532,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplate", "ApiReferenceLink": null, @@ -47594,7 +47594,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", "ApiReferenceLink": null, @@ -47626,7 +47626,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", "ApiReferenceLink": null, @@ -47689,7 +47689,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", "ApiReferenceLink": null, @@ -47721,7 +47721,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", "ApiReferenceLink": null, @@ -47784,7 +47784,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationSetting", "ApiReferenceLink": null, @@ -47816,7 +47816,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationSetting", "ApiReferenceLink": null, @@ -47878,7 +47878,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDataSharingConsent", "ApiReferenceLink": null, @@ -47918,7 +47918,7 @@ "OutputType": "IMicrosoftGraphDataSharingConsent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDataSharingConsent", "ApiReferenceLink": null, @@ -47996,7 +47996,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSetting", "ApiReferenceLink": null, @@ -48028,7 +48028,7 @@ "OutputType": "IMicrosoftGraphDepOnboardingSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSetting", "ApiReferenceLink": null, @@ -48090,7 +48090,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfile", "ApiReferenceLink": null, @@ -48122,7 +48122,7 @@ "OutputType": "IMicrosoftGraphDepIosEnrollmentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfile", "ApiReferenceLink": null, @@ -48186,7 +48186,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", "ApiReferenceLink": null, @@ -48218,7 +48218,7 @@ "OutputType": "IMicrosoftGraphEnrollmentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", "ApiReferenceLink": null, @@ -48313,7 +48313,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "ApiReferenceLink": null, @@ -48345,7 +48345,7 @@ "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "ApiReferenceLink": null, @@ -48408,7 +48408,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDerivedCredential", "ApiReferenceLink": null, @@ -48423,7 +48423,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDerivedCredential", "ApiReferenceLink": null, @@ -48451,7 +48451,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -48499,7 +48499,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -48593,7 +48593,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice", "ApiReferenceLink": null, @@ -48625,7 +48625,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice", "ApiReferenceLink": null, @@ -48688,7 +48688,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -48736,7 +48736,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -48830,7 +48830,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -48862,7 +48862,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -48893,7 +48893,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -48925,7 +48925,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -49050,7 +49050,7 @@ "OutputType": "IMicrosoftGraphRetireScheduledManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -49082,7 +49082,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -49145,7 +49145,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "ApiReferenceLink": null, @@ -49176,7 +49176,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -49208,7 +49208,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -49271,7 +49271,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "ApiReferenceLink": null, @@ -49335,7 +49335,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -49367,7 +49367,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -49430,7 +49430,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -49462,7 +49462,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -49525,7 +49525,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -49557,7 +49557,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -49619,7 +49619,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -49651,7 +49651,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -49714,7 +49714,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -49746,7 +49746,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -49809,7 +49809,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview", "ApiReferenceLink": null, @@ -49841,7 +49841,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -49873,7 +49873,7 @@ "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -49935,7 +49935,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -49967,7 +49967,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -50030,7 +50030,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummary", "ApiReferenceLink": null, @@ -50062,7 +50062,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummary", "ApiReferenceLink": null, @@ -50155,7 +50155,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -50187,7 +50187,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -50250,7 +50250,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary", "ApiReferenceLink": null, @@ -50281,7 +50281,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -50313,7 +50313,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -50376,7 +50376,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview", "ApiReferenceLink": null, @@ -50408,7 +50408,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", "ApiReferenceLink": null, @@ -50440,7 +50440,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", "ApiReferenceLink": null, @@ -50503,7 +50503,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfiguration", "ApiReferenceLink": null, @@ -50566,7 +50566,7 @@ "OutputType": "IMicrosoftGraphIosAvailableUpdateVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "ApiReferenceLink": null, @@ -50598,7 +50598,7 @@ "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "ApiReferenceLink": null, @@ -50661,7 +50661,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationProfile", "ApiReferenceLink": null, @@ -50676,7 +50676,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationProfile", "ApiReferenceLink": null, @@ -50704,7 +50704,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", "ApiReferenceLink": null, @@ -50736,7 +50736,7 @@ "OutputType": "IMicrosoftGraphRestrictedAppsViolation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", "ApiReferenceLink": null, @@ -50813,7 +50813,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationTargetedUserAndDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStateSummary", "ApiReferenceLink": null, @@ -50844,7 +50844,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -50876,7 +50876,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -50939,7 +50939,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview", "ApiReferenceLink": null, @@ -50971,7 +50971,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -51019,7 +51019,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -51066,7 +51066,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -51114,7 +51114,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -51256,7 +51256,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScript", "ApiReferenceLink": null, @@ -51288,7 +51288,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScript", "ApiReferenceLink": null, @@ -51319,7 +51319,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment", "ApiReferenceLink": null, @@ -51351,7 +51351,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment", "ApiReferenceLink": null, @@ -51445,7 +51445,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", "ApiReferenceLink": null, @@ -51477,7 +51477,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", "ApiReferenceLink": null, @@ -51540,7 +51540,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "ApiReferenceLink": null, @@ -51683,7 +51683,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRunSummary", "ApiReferenceLink": null, @@ -51715,7 +51715,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScript", "ApiReferenceLink": null, @@ -51763,7 +51763,7 @@ "OutputType": "IMicrosoftGraphDeviceShellScript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScript", "ApiReferenceLink": null, @@ -51810,7 +51810,7 @@ "OutputType": "IMicrosoftGraphDeviceShellScript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment", "ApiReferenceLink": null, @@ -51858,7 +51858,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment", "ApiReferenceLink": null, @@ -52000,7 +52000,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", "ApiReferenceLink": null, @@ -52048,7 +52048,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", "ApiReferenceLink": null, @@ -52143,7 +52143,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "ApiReferenceLink": null, @@ -52158,7 +52158,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", "ApiReferenceLink": null, @@ -52206,7 +52206,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", "ApiReferenceLink": null, @@ -52301,7 +52301,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptRunSummary", "ApiReferenceLink": null, @@ -52349,7 +52349,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState", "ApiReferenceLink": null, @@ -52397,7 +52397,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState", "ApiReferenceLink": null, @@ -52492,7 +52492,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -52507,7 +52507,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -52521,7 +52521,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDomainJoinConnector", "ApiReferenceLink": null, @@ -52553,7 +52553,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementDomainJoinConnector", "ApiReferenceLink": null, @@ -52663,7 +52663,7 @@ "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool", "ApiReferenceLink": null, @@ -52695,7 +52695,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool", "ApiReferenceLink": null, @@ -52726,7 +52726,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", "ApiReferenceLink": null, @@ -52758,7 +52758,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", "ApiReferenceLink": null, @@ -52852,7 +52852,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "ApiReferenceLink": null, @@ -52884,7 +52884,7 @@ "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "ApiReferenceLink": null, @@ -52947,7 +52947,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -52995,7 +52995,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -53089,7 +53089,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicy", "ApiReferenceLink": null, @@ -53138,7 +53138,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicy", "ApiReferenceLink": null, @@ -53152,7 +53152,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicyConditionalAccessSetting", "ApiReferenceLink": null, @@ -53182,7 +53182,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory", "ApiReferenceLink": null, @@ -53214,7 +53214,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory", "ApiReferenceLink": null, @@ -53245,7 +53245,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChild", "ApiReferenceLink": null, @@ -53260,7 +53260,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChild", "ApiReferenceLink": null, @@ -53320,7 +53320,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinition", "ApiReferenceLink": null, @@ -53335,7 +53335,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinition", "ApiReferenceLink": null, @@ -53364,7 +53364,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinitionFile", "ApiReferenceLink": null, @@ -53379,7 +53379,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryParent", "ApiReferenceLink": null, @@ -53394,7 +53394,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfiguration", "ApiReferenceLink": null, @@ -53426,7 +53426,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfiguration", "ApiReferenceLink": null, @@ -53457,7 +53457,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", "ApiReferenceLink": null, @@ -53489,7 +53489,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", "ApiReferenceLink": null, @@ -53583,7 +53583,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", "ApiReferenceLink": null, @@ -53615,7 +53615,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", "ApiReferenceLink": null, @@ -53678,7 +53678,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValueDefinition", "ApiReferenceLink": null, @@ -53710,7 +53710,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "ApiReferenceLink": null, @@ -53742,7 +53742,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "ApiReferenceLink": null, @@ -53773,7 +53773,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinition", "ApiReferenceLink": null, @@ -53805,7 +53805,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinition", "ApiReferenceLink": null, @@ -53836,7 +53836,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionCategory", "ApiReferenceLink": null, @@ -53882,7 +53882,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFile", "ApiReferenceLink": null, @@ -53916,7 +53916,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFile", "ApiReferenceLink": null, @@ -53944,7 +53944,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinition", "ApiReferenceLink": null, @@ -53959,7 +53959,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinition", "ApiReferenceLink": null, @@ -53988,7 +53988,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinition", "ApiReferenceLink": null, @@ -54003,7 +54003,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionCategory", "ApiReferenceLink": null, @@ -54018,7 +54018,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionFile", "ApiReferenceLink": null, @@ -54033,7 +54033,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -54048,7 +54048,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -54077,7 +54077,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentationDefinition", "ApiReferenceLink": null, @@ -54092,7 +54092,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinition", "ApiReferenceLink": null, @@ -54107,7 +54107,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionCategory", "ApiReferenceLink": null, @@ -54122,7 +54122,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionFile", "ApiReferenceLink": null, @@ -54137,7 +54137,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -54152,7 +54152,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -54181,7 +54181,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentationDefinition", "ApiReferenceLink": null, @@ -54196,7 +54196,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", "ApiReferenceLink": null, @@ -54211,7 +54211,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", "ApiReferenceLink": null, @@ -54240,7 +54240,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentationDefinition", "ApiReferenceLink": null, @@ -54255,7 +54255,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", "ApiReferenceLink": null, @@ -54270,7 +54270,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionCategory", "ApiReferenceLink": null, @@ -54285,7 +54285,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionFile", "ApiReferenceLink": null, @@ -54300,7 +54300,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinition", "ApiReferenceLink": null, @@ -54315,7 +54315,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionCategory", "ApiReferenceLink": null, @@ -54330,7 +54330,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionFile", "ApiReferenceLink": null, @@ -54345,7 +54345,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -54360,7 +54360,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -54389,7 +54389,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentationDefinition", "ApiReferenceLink": null, @@ -54404,7 +54404,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -54419,7 +54419,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", "ApiReferenceLink": null, @@ -54448,7 +54448,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentationDefinition", "ApiReferenceLink": null, @@ -54463,7 +54463,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReport", "ApiReferenceLink": null, @@ -54495,7 +54495,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReport", "ApiReferenceLink": null, @@ -54557,7 +54557,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "ApiReferenceLink": null, @@ -54589,7 +54589,7 @@ "OutputType": "IMicrosoftGraphGroupPolicySettingMapping" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "ApiReferenceLink": null, @@ -54652,7 +54652,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "ApiReferenceLink": null, @@ -54684,7 +54684,7 @@ "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "ApiReferenceLink": null, @@ -54747,7 +54747,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFile", "ApiReferenceLink": null, @@ -54779,7 +54779,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyObjectFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFile", "ApiReferenceLink": null, @@ -54841,7 +54841,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", "ApiReferenceLink": null, @@ -54873,7 +54873,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", "ApiReferenceLink": null, @@ -54935,7 +54935,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinition", "ApiReferenceLink": null, @@ -54950,7 +54950,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinition", "ApiReferenceLink": null, @@ -54979,7 +54979,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "ApiReferenceLink": null, @@ -54994,7 +54994,7 @@ "OutputType": "IMicrosoftGraphGroupPolicyOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "ApiReferenceLink": null, @@ -55023,7 +55023,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentity", "ApiReferenceLink": null, @@ -55055,7 +55055,7 @@ "OutputType": "IMicrosoftGraphImportedDeviceIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentity", "ApiReferenceLink": null, @@ -55117,7 +55117,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -55149,7 +55149,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -55211,7 +55211,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntent", "ApiReferenceLink": null, @@ -55243,7 +55243,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntent", "ApiReferenceLink": null, @@ -55274,7 +55274,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentAssignment", "ApiReferenceLink": null, @@ -55306,7 +55306,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentAssignment", "ApiReferenceLink": null, @@ -55369,7 +55369,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategory", "ApiReferenceLink": null, @@ -55401,7 +55401,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategory", "ApiReferenceLink": null, @@ -55464,7 +55464,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySetting", "ApiReferenceLink": null, @@ -55496,7 +55496,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySetting", "ApiReferenceLink": null, @@ -55559,7 +55559,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinition", "ApiReferenceLink": null, @@ -55591,7 +55591,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinition", "ApiReferenceLink": null, @@ -55717,7 +55717,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentCustomizedSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -55749,7 +55749,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -55812,7 +55812,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceState", "ApiReferenceLink": null, @@ -55844,7 +55844,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceState", "ApiReferenceLink": null, @@ -55907,7 +55907,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceStateSummary", "ApiReferenceLink": null, @@ -55939,7 +55939,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentSetting", "ApiReferenceLink": null, @@ -55971,7 +55971,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentSetting", "ApiReferenceLink": null, @@ -56034,7 +56034,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentUserState", "ApiReferenceLink": null, @@ -56066,7 +56066,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentUserState", "ApiReferenceLink": null, @@ -56129,7 +56129,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentUserStateSummary", "ApiReferenceLink": null, @@ -56161,7 +56161,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfile", "ApiReferenceLink": null, @@ -56193,7 +56193,7 @@ "OutputType": "IMicrosoftGraphIntuneBrandingProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfile", "ApiReferenceLink": null, @@ -56224,7 +56224,7 @@ "OutputType": "IMicrosoftGraphIntuneBrandingProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignment", "ApiReferenceLink": null, @@ -56256,7 +56256,7 @@ "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignment", "ApiReferenceLink": null, @@ -56350,7 +56350,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -56382,7 +56382,7 @@ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -56444,7 +56444,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", "ApiReferenceLink": null, @@ -56476,7 +56476,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", "ApiReferenceLink": null, @@ -56507,7 +56507,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "ApiReferenceLink": null, @@ -56539,7 +56539,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "ApiReferenceLink": null, @@ -56602,7 +56602,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "ApiReferenceLink": null, @@ -56634,7 +56634,7 @@ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "ApiReferenceLink": null, @@ -56728,7 +56728,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -56776,7 +56776,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -56823,7 +56823,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -56838,7 +56838,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -56867,7 +56867,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCategory", "ApiReferenceLink": null, @@ -56882,7 +56882,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRule", "ApiReferenceLink": null, @@ -56897,7 +56897,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRule", "ApiReferenceLink": null, @@ -56972,7 +56972,7 @@ "OutputType": "IMicrosoftGraphCloudPcReviewStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -56987,7 +56987,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -57016,7 +57016,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -57031,7 +57031,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -57107,7 +57107,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedApp", "ApiReferenceLink": null, @@ -57122,7 +57122,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedApp", "ApiReferenceLink": null, @@ -57151,7 +57151,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState", "ApiReferenceLink": null, @@ -57183,7 +57183,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState", "ApiReferenceLink": null, @@ -57293,7 +57293,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -57308,7 +57308,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -57337,7 +57337,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -57352,7 +57352,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -57381,7 +57381,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -57396,7 +57396,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -57440,7 +57440,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceOverview", "ApiReferenceLink": null, @@ -57487,7 +57487,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -57502,7 +57502,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -57531,7 +57531,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -57546,7 +57546,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -57575,7 +57575,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceUser", "ApiReferenceLink": null, @@ -57589,7 +57589,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -57604,7 +57604,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -57619,7 +57619,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -57648,7 +57648,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfiguration", "ApiReferenceLink": null, @@ -57680,7 +57680,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfiguration", "ApiReferenceLink": null, @@ -57742,7 +57742,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", "ApiReferenceLink": null, @@ -57774,7 +57774,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", "ApiReferenceLink": null, @@ -57836,7 +57836,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "ApiReferenceLink": null, @@ -57868,7 +57868,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "ApiReferenceLink": null, @@ -57930,7 +57930,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSite", "ApiReferenceLink": null, @@ -57962,7 +57962,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSite", "ApiReferenceLink": null, @@ -58024,7 +58024,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", "ApiReferenceLink": null, @@ -58056,7 +58056,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "ApiReferenceLink": null, @@ -58088,7 +58088,7 @@ "OutputType": "IMicrosoftGraphMicrosoftTunnelServer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "ApiReferenceLink": null, @@ -58219,7 +58219,7 @@ "OutputType": "IMicrosoftGraphMetricTimeSeriesDataPoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -58251,7 +58251,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -58282,7 +58282,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -58330,7 +58330,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -58456,7 +58456,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -58504,7 +58504,7 @@ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -58598,7 +58598,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoring", "ApiReferenceLink": null, @@ -58612,7 +58612,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementMonitoring" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord", "ApiReferenceLink": null, @@ -58644,7 +58644,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord", "ApiReferenceLink": null, @@ -58737,7 +58737,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementPortalNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoringAlertRule", "ApiReferenceLink": null, @@ -58769,7 +58769,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementAlertRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoringAlertRule", "ApiReferenceLink": null, @@ -58831,7 +58831,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementNdeConnector", "ApiReferenceLink": null, @@ -58863,7 +58863,7 @@ "OutputType": "IMicrosoftGraphNdesConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementNdeConnector", "ApiReferenceLink": null, @@ -58925,7 +58925,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -58957,7 +58957,7 @@ "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -59019,7 +59019,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -59051,7 +59051,7 @@ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -59210,7 +59210,7 @@ "OutputType": "IMicrosoftGraphOperationApprovalPolicySet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequest", "ApiReferenceLink": null, @@ -59320,7 +59320,7 @@ "OutputType": "IMicrosoftGraphOperationApprovalRequestEntityStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementPartner", "ApiReferenceLink": null, @@ -59368,7 +59368,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementPartner", "ApiReferenceLink": null, @@ -59462,7 +59462,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRemoteActionAudit", "ApiReferenceLink": null, @@ -59510,7 +59510,7 @@ "OutputType": "IMicrosoftGraphRemoteActionAudit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRemoteActionAudit", "ApiReferenceLink": null, @@ -59604,7 +59604,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -59652,7 +59652,7 @@ "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -59746,7 +59746,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReport", "ApiReferenceLink": null, @@ -59949,7 +59949,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReportCachedReportConfiguration", "ApiReferenceLink": null, @@ -60013,7 +60013,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReportCachedReportConfiguration", "ApiReferenceLink": null, @@ -61546,7 +61546,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReportExportJob", "ApiReferenceLink": null, @@ -61610,7 +61610,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExportJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReportExportJob", "ApiReferenceLink": null, @@ -62632,7 +62632,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceAccessProfile", "ApiReferenceLink": null, @@ -62664,7 +62664,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceAccessProfile", "ApiReferenceLink": null, @@ -62695,7 +62695,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment", "ApiReferenceLink": null, @@ -62727,7 +62727,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment", "ApiReferenceLink": null, @@ -62821,7 +62821,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -62869,7 +62869,7 @@ "OutputType": "IMicrosoftGraphResourceOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -63041,7 +63041,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReusableSetting", "ApiReferenceLink": null, @@ -63073,7 +63073,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementReusableSetting", "ApiReferenceLink": null, @@ -63135,7 +63135,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -63183,7 +63183,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -63277,7 +63277,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -63292,7 +63292,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTag", "ApiReferenceLink": null, @@ -63307,7 +63307,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTag", "ApiReferenceLink": null, @@ -63336,7 +63336,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -63384,7 +63384,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -63478,7 +63478,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -63526,7 +63526,7 @@ "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -63621,7 +63621,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -63669,7 +63669,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTag", "ApiReferenceLink": null, @@ -63717,7 +63717,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTag", "ApiReferenceLink": null, @@ -63764,7 +63764,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignment", "ApiReferenceLink": null, @@ -63779,7 +63779,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignment", "ApiReferenceLink": null, @@ -63808,7 +63808,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagById", "ApiReferenceLink": null, @@ -63823,7 +63823,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagByResource", "ApiReferenceLink": null, @@ -63933,7 +63933,7 @@ "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScript", "ApiReferenceLink": null, @@ -63948,7 +63948,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScript", "ApiReferenceLink": null, @@ -63962,7 +63962,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptAssignment", "ApiReferenceLink": null, @@ -64010,7 +64010,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptAssignment", "ApiReferenceLink": null, @@ -64119,7 +64119,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState", "ApiReferenceLink": null, @@ -64167,7 +64167,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState", "ApiReferenceLink": null, @@ -64262,7 +64262,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateManagedDevice", "ApiReferenceLink": null, @@ -64310,7 +64310,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment", "ApiReferenceLink": null, @@ -64358,7 +64358,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment", "ApiReferenceLink": null, @@ -64453,7 +64453,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptRunSummary", "ApiReferenceLink": null, @@ -64501,7 +64501,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptUserRunState", "ApiReferenceLink": null, @@ -64549,7 +64549,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptUserRunState", "ApiReferenceLink": null, @@ -64644,7 +64644,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -64692,7 +64692,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", "ApiReferenceLink": null, @@ -64739,7 +64739,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementSettingDefinition", "ApiReferenceLink": null, @@ -64771,7 +64771,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementSettingDefinition", "ApiReferenceLink": null, @@ -64833,7 +64833,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementSoftwareUpdateStatusSummary", "ApiReferenceLink": null, @@ -64896,7 +64896,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -64928,7 +64928,7 @@ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -64990,7 +64990,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplate", "ApiReferenceLink": null, @@ -65022,7 +65022,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplate", "ApiReferenceLink": null, @@ -65053,7 +65053,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategory", "ApiReferenceLink": null, @@ -65085,7 +65085,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategory", "ApiReferenceLink": null, @@ -65148,7 +65148,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -65180,7 +65180,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -65243,7 +65243,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinition", "ApiReferenceLink": null, @@ -65275,7 +65275,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinition", "ApiReferenceLink": null, @@ -65369,7 +65369,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableTo", "ApiReferenceLink": null, @@ -65401,7 +65401,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableTo", "ApiReferenceLink": null, @@ -65432,7 +65432,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategory", "ApiReferenceLink": null, @@ -65447,7 +65447,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategory", "ApiReferenceLink": null, @@ -65476,7 +65476,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -65491,7 +65491,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", "ApiReferenceLink": null, @@ -65520,7 +65520,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", "ApiReferenceLink": null, @@ -65535,7 +65535,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", "ApiReferenceLink": null, @@ -65596,7 +65596,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSetting", "ApiReferenceLink": null, @@ -65611,7 +65611,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSetting", "ApiReferenceLink": null, @@ -65640,7 +65640,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateSetting", "ApiReferenceLink": null, @@ -65672,7 +65672,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateSetting", "ApiReferenceLink": null, @@ -65782,7 +65782,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -65814,7 +65814,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -65845,7 +65845,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -65877,7 +65877,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -65940,7 +65940,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition", "ApiReferenceLink": null, @@ -65972,7 +65972,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -66004,7 +66004,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -66098,7 +66098,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignment", "ApiReferenceLink": null, @@ -66130,7 +66130,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignment", "ApiReferenceLink": null, @@ -66193,7 +66193,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignmentTermAndCondition", "ApiReferenceLink": null, @@ -66225,7 +66225,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -66257,7 +66257,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -66319,7 +66319,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", "ApiReferenceLink": null, @@ -66367,7 +66367,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", "ApiReferenceLink": null, @@ -66414,7 +66414,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", "ApiReferenceLink": null, @@ -66429,7 +66429,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", "ApiReferenceLink": null, @@ -66504,7 +66504,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", "ApiReferenceLink": null, @@ -66552,7 +66552,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", "ApiReferenceLink": null, @@ -66646,7 +66646,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -66694,7 +66694,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -66741,7 +66741,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "ApiReferenceLink": null, @@ -66789,7 +66789,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "ApiReferenceLink": null, @@ -66883,7 +66883,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -66931,7 +66931,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -67025,7 +67025,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -67073,7 +67073,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -67167,7 +67167,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -67215,7 +67215,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -67356,7 +67356,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -67404,7 +67404,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -67498,7 +67498,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -67546,7 +67546,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -67640,7 +67640,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -67688,7 +67688,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -67782,7 +67782,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -67830,7 +67830,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -67924,7 +67924,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverview", "ApiReferenceLink": null, @@ -67971,7 +67971,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -67986,7 +67986,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -68014,7 +68014,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -68062,7 +68062,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -68109,7 +68109,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineAppHealthMetric", "ApiReferenceLink": null, @@ -68157,7 +68157,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetric", "ApiReferenceLink": null, @@ -68205,7 +68205,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetric", "ApiReferenceLink": null, @@ -68300,7 +68300,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetric", "ApiReferenceLink": null, @@ -68348,7 +68348,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetric", "ApiReferenceLink": null, @@ -68396,7 +68396,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric", "ApiReferenceLink": null, @@ -68444,7 +68444,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -68492,7 +68492,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "ApiReferenceLink": null, @@ -68540,7 +68540,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "ApiReferenceLink": null, @@ -68634,7 +68634,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", "ApiReferenceLink": null, @@ -68681,7 +68681,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "ApiReferenceLink": null, @@ -68729,7 +68729,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "ApiReferenceLink": null, @@ -68823,7 +68823,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "ApiReferenceLink": null, @@ -68871,7 +68871,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "ApiReferenceLink": null, @@ -68965,7 +68965,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "ApiReferenceLink": null, @@ -69013,7 +69013,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "ApiReferenceLink": null, @@ -69107,7 +69107,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "ApiReferenceLink": null, @@ -69155,7 +69155,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "ApiReferenceLink": null, @@ -69249,7 +69249,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "ApiReferenceLink": null, @@ -69297,7 +69297,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "ApiReferenceLink": null, @@ -69391,7 +69391,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", "ApiReferenceLink": null, @@ -69438,7 +69438,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -69486,7 +69486,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -69514,7 +69514,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -69529,7 +69529,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -69558,7 +69558,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "ApiReferenceLink": null, @@ -69606,7 +69606,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "ApiReferenceLink": null, @@ -69700,7 +69700,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -69748,7 +69748,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -69842,7 +69842,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", "ApiReferenceLink": null, @@ -69891,7 +69891,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", "ApiReferenceLink": null, @@ -69985,7 +69985,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -70033,7 +70033,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -70127,7 +70127,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -70175,7 +70175,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -70269,7 +70269,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -70317,7 +70317,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -70411,7 +70411,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -70459,7 +70459,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -70553,7 +70553,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", "ApiReferenceLink": null, @@ -70568,7 +70568,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", "ApiReferenceLink": null, @@ -70596,7 +70596,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "ApiReferenceLink": null, @@ -70644,7 +70644,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "ApiReferenceLink": null, @@ -70738,7 +70738,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", "ApiReferenceLink": null, @@ -70786,7 +70786,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", "ApiReferenceLink": null, @@ -70880,7 +70880,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -70928,7 +70928,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -71022,7 +71022,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -71070,7 +71070,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -71164,7 +71164,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "ApiReferenceLink": null, @@ -71212,7 +71212,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "ApiReferenceLink": null, @@ -71306,7 +71306,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticOverview", "ApiReferenceLink": null, @@ -71353,7 +71353,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", "ApiReferenceLink": null, @@ -71401,7 +71401,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", "ApiReferenceLink": null, @@ -71495,7 +71495,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", "ApiReferenceLink": null, @@ -71543,7 +71543,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", "ApiReferenceLink": null, @@ -71637,7 +71637,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -71685,7 +71685,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -71779,7 +71779,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "ApiReferenceLink": null, @@ -71826,7 +71826,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -71874,7 +71874,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -71968,7 +71968,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -72016,7 +72016,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -72111,7 +72111,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -72159,7 +72159,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -72253,7 +72253,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserPfxCertificate", "ApiReferenceLink": null, @@ -72285,7 +72285,7 @@ "OutputType": "IMicrosoftGraphUserPfxCertificate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserPfxCertificate", "ApiReferenceLink": null, @@ -72347,7 +72347,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpoint", "ApiReferenceLink": null, @@ -72361,7 +72361,7 @@ "OutputType": "IMicrosoftGraphVirtualEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent", "ApiReferenceLink": null, @@ -72393,7 +72393,7 @@ "OutputType": "IMicrosoftGraphCloudPcAuditEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent", "ApiReferenceLink": null, @@ -72486,7 +72486,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkAction", "ApiReferenceLink": null, @@ -72501,7 +72501,7 @@ "OutputType": "IMicrosoftGraphCloudPcBulkAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkAction", "ApiReferenceLink": null, @@ -72529,7 +72529,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": null, @@ -72561,7 +72561,7 @@ "OutputType": "IMicrosoftGraphCloudPc" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": null, @@ -72685,7 +72685,7 @@ "OutputType": "IMicrosoftGraphCloudPcLaunchInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcProvisionedCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta", @@ -72764,7 +72764,7 @@ "OutputType": "IMicrosoftGraphCloudPcRemoteActionCapability" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCrossCloudGovernmentOrganizationMapping", "ApiReferenceLink": null, @@ -72795,7 +72795,7 @@ "OutputType": "IMicrosoftGraphCloudPcCrossCloudGovernmentOrganizationMapping" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -72827,7 +72827,7 @@ "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -72951,7 +72951,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", "ApiReferenceLink": null, @@ -72983,7 +72983,7 @@ "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", "ApiReferenceLink": null, @@ -73045,7 +73045,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", "ApiReferenceLink": null, @@ -73060,7 +73060,7 @@ "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", "ApiReferenceLink": null, @@ -73088,7 +73088,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -73120,7 +73120,7 @@ "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -73182,7 +73182,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -73214,7 +73214,7 @@ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -73276,7 +73276,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointOrganizationSetting", "ApiReferenceLink": null, @@ -73307,7 +73307,7 @@ "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -73339,7 +73339,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -73370,7 +73370,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -73385,7 +73385,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -73399,7 +73399,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser", "ApiReferenceLink": null, @@ -73414,7 +73414,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser", "ApiReferenceLink": null, @@ -73443,7 +73443,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting", "ApiReferenceLink": null, @@ -73458,7 +73458,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError", "ApiReferenceLink": null, @@ -73533,7 +73533,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReport", "ApiReferenceLink": null, @@ -73654,7 +73654,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJob", "ApiReferenceLink": null, @@ -73669,7 +73669,7 @@ "OutputType": "IMicrosoftGraphCloudPcExportJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJob", "ApiReferenceLink": null, @@ -73882,7 +73882,7 @@ "OutputType": "IMicrosoftGraphCloudPcScopedPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlan", "ApiReferenceLink": null, @@ -73897,7 +73897,7 @@ "OutputType": "IMicrosoftGraphCloudPcServicePlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlan", "ApiReferenceLink": null, @@ -73959,7 +73959,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", "ApiReferenceLink": null, @@ -73991,7 +73991,7 @@ "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", "ApiReferenceLink": null, @@ -74053,7 +74053,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot", "ApiReferenceLink": null, @@ -74085,7 +74085,7 @@ "OutputType": "IMicrosoftGraphCloudPcSnapshot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot", "ApiReferenceLink": null, @@ -74210,7 +74210,7 @@ "OutputType": "IMicrosoftGraphCloudPcSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegion", "ApiReferenceLink": null, @@ -74225,7 +74225,7 @@ "OutputType": "IMicrosoftGraphCloudPcSupportedRegion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegion", "ApiReferenceLink": null, @@ -74301,7 +74301,7 @@ "OutputType": "IMicrosoftGraphCloudPcTenantEncryptionSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -74333,7 +74333,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -74364,7 +74364,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -74379,7 +74379,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -74439,7 +74439,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", "ApiReferenceLink": null, @@ -74471,7 +74471,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", "ApiReferenceLink": null, @@ -74502,7 +74502,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", "ApiReferenceLink": null, @@ -74517,7 +74517,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", "ApiReferenceLink": null, @@ -74546,7 +74546,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceDeploymentProfile", "ApiReferenceLink": null, @@ -74561,7 +74561,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfile", "ApiReferenceLink": null, @@ -74576,7 +74576,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", "ApiReferenceLink": null, @@ -74591,7 +74591,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", "ApiReferenceLink": null, @@ -74651,7 +74651,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -74683,7 +74683,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -74745,7 +74745,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeploymentProfile", "ApiReferenceLink": null, @@ -74777,7 +74777,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityIntendedDeploymentProfile", "ApiReferenceLink": null, @@ -74809,7 +74809,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotSetting", "ApiReferenceLink": null, @@ -74840,7 +74840,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile", "ApiReferenceLink": null, @@ -74872,7 +74872,7 @@ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile", "ApiReferenceLink": null, @@ -74903,7 +74903,7 @@ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", "ApiReferenceLink": null, @@ -74934,37 +74934,37 @@ ], "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment" }, - { - "CommandAlias": "Expand", - "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", - "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": "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", + "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": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment" + }, { "CommandAlias": null, "Method": "GET", @@ -75029,7 +75029,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -75061,7 +75061,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -75123,7 +75123,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -75155,7 +75155,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -75217,7 +75217,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -75265,7 +75265,7 @@ "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -75359,7 +75359,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -75407,7 +75407,7 @@ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -75502,7 +75502,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile", "ApiReferenceLink": null, @@ -75534,7 +75534,7 @@ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile", "ApiReferenceLink": null, @@ -75565,7 +75565,7 @@ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", "ApiReferenceLink": null, @@ -75597,7 +75597,7 @@ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", "ApiReferenceLink": null, @@ -75903,7 +75903,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceMemberOf", "ApiReferenceLink": null, @@ -75918,7 +75918,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceMemberOf", "ApiReferenceLink": null, @@ -75965,7 +75965,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -75980,7 +75980,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -75994,7 +75994,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfAsGroup", "ApiReferenceLink": null, @@ -76009,7 +76009,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfAsGroup", "ApiReferenceLink": null, @@ -76101,7 +76101,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwner", "ApiReferenceLink": null, @@ -76148,7 +76148,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsEndpoint", "ApiReferenceLink": null, @@ -76163,7 +76163,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsEndpoint", "ApiReferenceLink": null, @@ -76177,7 +76177,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -76192,7 +76192,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -76206,7 +76206,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsUser", "ApiReferenceLink": null, @@ -76221,7 +76221,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsUser", "ApiReferenceLink": null, @@ -76375,7 +76375,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUser", "ApiReferenceLink": null, @@ -76422,7 +76422,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsEndpoint", "ApiReferenceLink": null, @@ -76437,7 +76437,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsEndpoint", "ApiReferenceLink": null, @@ -76451,7 +76451,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsServicePrincipal", "ApiReferenceLink": null, @@ -76466,7 +76466,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsServicePrincipal", "ApiReferenceLink": null, @@ -76480,7 +76480,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsUser", "ApiReferenceLink": null, @@ -76495,7 +76495,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsUser", "ApiReferenceLink": null, @@ -76649,7 +76649,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOf", "ApiReferenceLink": null, @@ -76664,7 +76664,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOf", "ApiReferenceLink": null, @@ -76711,7 +76711,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -76726,7 +76726,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -76740,7 +76740,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -76755,7 +76755,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -76847,7 +76847,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceUsageRights", "ApiReferenceLink": null, @@ -76862,7 +76862,7 @@ "OutputType": "IMicrosoftGraphUsageRight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDeviceUsageRights", "ApiReferenceLink": null, @@ -76972,7 +76972,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectory", "ApiReferenceLink": null, @@ -76986,7 +76986,7 @@ "OutputType": "IMicrosoftGraphDirectory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -77034,7 +77034,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -77128,7 +77128,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-delta?view=graph-rest-beta", @@ -77175,7 +77175,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -77190,7 +77190,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -77219,7 +77219,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMember", "ApiReferenceLink": null, @@ -77266,7 +77266,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsApplication", "ApiReferenceLink": null, @@ -77281,7 +77281,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsApplication", "ApiReferenceLink": null, @@ -77328,7 +77328,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsDevice", "ApiReferenceLink": null, @@ -77343,7 +77343,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsDevice", "ApiReferenceLink": null, @@ -77390,7 +77390,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsGroup", "ApiReferenceLink": null, @@ -77405,7 +77405,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsGroup", "ApiReferenceLink": null, @@ -77452,7 +77452,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsOrgContact", "ApiReferenceLink": null, @@ -77467,7 +77467,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsOrgContact", "ApiReferenceLink": null, @@ -77514,7 +77514,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -77529,7 +77529,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -77576,7 +77576,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsUser", "ApiReferenceLink": null, @@ -77591,7 +77591,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsUser", "ApiReferenceLink": null, @@ -78021,7 +78021,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -78069,7 +78069,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -78164,7 +78164,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAttributeSet", "ApiReferenceLink": null, @@ -78196,7 +78196,7 @@ "OutputType": "IMicrosoftGraphAttributeSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryAttributeSet", "ApiReferenceLink": null, @@ -78258,7 +78258,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthority", "ApiReferenceLink": null, @@ -78272,7 +78272,7 @@ "OutputType": "IMicrosoftGraphCertificateAuthorityPath" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", "ApiReferenceLink": null, @@ -78304,7 +78304,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", "ApiReferenceLink": null, @@ -78366,7 +78366,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", "ApiReferenceLink": null, @@ -78398,7 +78398,7 @@ "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", "ApiReferenceLink": null, @@ -78461,7 +78461,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -78493,7 +78493,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -78524,7 +78524,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -78556,7 +78556,7 @@ "OutputType": "IMicrosoftGraphAllowedValue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -78650,7 +78650,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItem", "ApiReferenceLink": null, @@ -79015,7 +79015,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryExternalUserProfile", "ApiReferenceLink": null, @@ -79030,7 +79030,7 @@ "OutputType": "IMicrosoftGraphExternalUserProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryExternalUserProfile", "ApiReferenceLink": null, @@ -79058,7 +79058,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -79073,7 +79073,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -79087,7 +79087,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyTo", "ApiReferenceLink": null, @@ -79130,7 +79130,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -79162,7 +79162,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -79224,7 +79224,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryImpactedResource", "ApiReferenceLink": null, @@ -79239,7 +79239,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryImpactedResource", "ApiReferenceLink": null, @@ -79267,7 +79267,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryInboundSharedUserProfile", "ApiReferenceLink": null, @@ -79315,7 +79315,7 @@ "OutputType": "IMicrosoftGraphInboundSharedUserProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryInboundSharedUserProfile", "ApiReferenceLink": null, @@ -79377,7 +79377,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-get?view=graph-rest-beta", @@ -79392,7 +79392,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryObject", "ApiReferenceLink": null, @@ -79435,7 +79435,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryObjectDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta", @@ -79676,7 +79676,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -79691,7 +79691,7 @@ "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -79753,7 +79753,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile", "ApiReferenceLink": null, @@ -79801,7 +79801,7 @@ "OutputType": "IMicrosoftGraphOutboundSharedUserProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile", "ApiReferenceLink": null, @@ -79895,7 +79895,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenant", "ApiReferenceLink": null, @@ -79910,7 +79910,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenant", "ApiReferenceLink": null, @@ -80005,7 +80005,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryPendingExternalUserProfile", "ApiReferenceLink": null, @@ -80020,7 +80020,7 @@ "OutputType": "IMicrosoftGraphPendingExternalUserProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryPendingExternalUserProfile", "ApiReferenceLink": null, @@ -80048,7 +80048,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRecommendation", "ApiReferenceLink": null, @@ -80080,7 +80080,7 @@ "OutputType": "IMicrosoftGraphRecommendation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRecommendation", "ApiReferenceLink": null, @@ -80142,7 +80142,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRecommendationImpactedResource", "ApiReferenceLink": null, @@ -80174,7 +80174,7 @@ "OutputType": "IMicrosoftGraphImpactedResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRecommendationImpactedResource", "ApiReferenceLink": null, @@ -80237,7 +80237,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-beta", @@ -80285,7 +80285,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list?view=graph-rest-beta", @@ -80347,7 +80347,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleByRoleTemplateId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-beta", @@ -80442,7 +80442,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-delta?view=graph-rest-beta", @@ -80489,7 +80489,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMember", "ApiReferenceLink": null, @@ -80536,7 +80536,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsApplication", "ApiReferenceLink": null, @@ -80551,7 +80551,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsApplication", "ApiReferenceLink": null, @@ -80565,7 +80565,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsDevice", "ApiReferenceLink": null, @@ -80580,7 +80580,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsDevice", "ApiReferenceLink": null, @@ -80594,7 +80594,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsGroup", "ApiReferenceLink": null, @@ -80609,7 +80609,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsGroup", "ApiReferenceLink": null, @@ -80623,7 +80623,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsOrgContact", "ApiReferenceLink": null, @@ -80638,7 +80638,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsOrgContact", "ApiReferenceLink": null, @@ -80652,7 +80652,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -80667,7 +80667,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -80681,7 +80681,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsUser", "ApiReferenceLink": null, @@ -80696,7 +80696,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsUser", "ApiReferenceLink": null, @@ -80929,7 +80929,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -80944,7 +80944,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -81039,7 +81039,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-get?view=graph-rest-beta", @@ -81087,7 +81087,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-list?view=graph-rest-beta", @@ -81196,7 +81196,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectoryRoleTemplateDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta", @@ -81307,7 +81307,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySetting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-get?view=graph-rest-beta", @@ -81355,7 +81355,7 @@ "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySetting", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-settings?view=graph-rest-beta", @@ -81402,7 +81402,7 @@ "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySettingTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysettingtemplate-get?view=graph-rest-beta", @@ -81434,7 +81434,7 @@ "OutputType": "IMicrosoftGraphDirectorySettingTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySettingTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysettingtemplate-list?view=graph-rest-beta", @@ -81511,7 +81511,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySettingTemplateDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta", @@ -81591,7 +81591,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySharedEmailDomain", "ApiReferenceLink": null, @@ -81606,7 +81606,7 @@ "OutputType": "IMicrosoftGraphSharedEmailDomain" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySharedEmailDomain", "ApiReferenceLink": null, @@ -81634,7 +81634,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySubscription", "ApiReferenceLink": null, @@ -81649,7 +81649,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySubscription", "ApiReferenceLink": null, @@ -81663,7 +81663,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySubscriptionByCommerceSubscriptionId", "ApiReferenceLink": null, @@ -81678,7 +81678,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDirectorySubscriptionByOcpSubscriptionId", "ApiReferenceLink": null, @@ -81707,7 +81707,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-get?view=graph-rest-beta", @@ -81747,7 +81747,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list?view=graph-rest-beta", @@ -81825,7 +81825,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainFederationConfiguration", "ApiReferenceLink": null, @@ -81857,7 +81857,7 @@ "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainFederationConfiguration", "ApiReferenceLink": null, @@ -81886,7 +81886,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainNameReference", "ApiReferenceLink": null, @@ -81901,7 +81901,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainNameReference", "ApiReferenceLink": null, @@ -81964,7 +81964,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -81979,7 +81979,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -82042,7 +82042,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainSharedEmailDomainInvitation", "ApiReferenceLink": null, @@ -82057,7 +82057,7 @@ "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainSharedEmailDomainInvitation", "ApiReferenceLink": null, @@ -82086,7 +82086,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -82101,7 +82101,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -82164,7 +82164,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDrive", "ApiReferenceLink": null, @@ -82228,7 +82228,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDrive", "ApiReferenceLink": null, @@ -82242,7 +82242,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveActivity", "ApiReferenceLink": null, @@ -82305,7 +82305,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveBundle", "ApiReferenceLink": null, @@ -82320,7 +82320,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveBundle", "ApiReferenceLink": null, @@ -82379,7 +82379,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveContentTypeBase", "ApiReferenceLink": null, @@ -82394,7 +82394,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -82409,7 +82409,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -82438,7 +82438,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveCreatedByUser", "ApiReferenceLink": null, @@ -82453,7 +82453,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -82468,7 +82468,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -82497,7 +82497,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveFollowing", "ApiReferenceLink": null, @@ -82512,7 +82512,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveFollowing", "ApiReferenceLink": null, @@ -82571,7 +82571,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItem", "ApiReferenceLink": null, @@ -82651,7 +82651,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItem", "ApiReferenceLink": null, @@ -82665,7 +82665,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemActivity", "ApiReferenceLink": null, @@ -82728,7 +82728,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", @@ -82743,7 +82743,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemAnalytic", "ApiReferenceLink": null, @@ -82807,7 +82807,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -82822,7 +82822,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -82836,7 +82836,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -82865,7 +82865,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -82929,7 +82929,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticTime", "ApiReferenceLink": null, @@ -82993,7 +82993,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemChild", "ApiReferenceLink": null, @@ -83008,7 +83008,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemChild", "ApiReferenceLink": null, @@ -83308,7 +83308,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemCreatedByUser", "ApiReferenceLink": null, @@ -83323,7 +83323,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -83338,7 +83338,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -83367,7 +83367,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", @@ -83384,7 +83384,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemItemLastModifiedByUser", "ApiReferenceLink": null, @@ -83399,7 +83399,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -83414,7 +83414,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -83443,7 +83443,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemLastModifiedByUser", "ApiReferenceLink": null, @@ -83460,7 +83460,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -83477,7 +83477,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -83509,7 +83509,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItem", "ApiReferenceLink": null, @@ -83524,7 +83524,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemActivity", "ApiReferenceLink": null, @@ -83538,7 +83538,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemActivityByInterval", "ApiReferenceLink": null, @@ -83553,7 +83553,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemAnalytic", "ApiReferenceLink": null, @@ -83568,7 +83568,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemCreatedByUser", "ApiReferenceLink": null, @@ -83583,7 +83583,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -83598,7 +83598,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -83627,7 +83627,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -83642,7 +83642,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -83671,7 +83671,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -83686,7 +83686,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDriveItem", "ApiReferenceLink": null, @@ -83731,7 +83731,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemField", "ApiReferenceLink": null, @@ -83746,7 +83746,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemVersion", "ApiReferenceLink": null, @@ -83761,7 +83761,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemVersion", "ApiReferenceLink": null, @@ -83790,7 +83790,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -83805,7 +83805,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemPermission", "ApiReferenceLink": null, @@ -83869,7 +83869,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemPermission", "ApiReferenceLink": null, @@ -83996,7 +83996,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -84011,7 +84011,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemSubscription", "ApiReferenceLink": null, @@ -84026,7 +84026,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemSubscription", "ApiReferenceLink": null, @@ -84055,7 +84055,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemThumbnail", "ApiReferenceLink": null, @@ -84070,7 +84070,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemThumbnail", "ApiReferenceLink": null, @@ -84197,7 +84197,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemVersion", "ApiReferenceLink": null, @@ -84261,7 +84261,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveItemVersion", "ApiReferenceLink": null, @@ -84452,7 +84452,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveLastModifiedByUser", "ApiReferenceLink": null, @@ -84469,7 +84469,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -84486,7 +84486,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -84518,7 +84518,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveList", "ApiReferenceLink": null, @@ -84533,7 +84533,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListActivity", "ApiReferenceLink": null, @@ -84547,7 +84547,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListColumn", "ApiReferenceLink": null, @@ -84562,7 +84562,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListColumn", "ApiReferenceLink": null, @@ -84591,7 +84591,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListColumnSourceColumn", "ApiReferenceLink": null, @@ -84606,7 +84606,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentType", "ApiReferenceLink": null, @@ -84621,7 +84621,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentType", "ApiReferenceLink": null, @@ -84635,7 +84635,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -84650,7 +84650,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -84679,7 +84679,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -84694,7 +84694,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -84723,7 +84723,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -84738,7 +84738,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -84767,7 +84767,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -84782,7 +84782,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", @@ -84812,7 +84812,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListCreatedByUser", "ApiReferenceLink": null, @@ -84827,7 +84827,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -84842,7 +84842,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -84871,7 +84871,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListDrive", "ApiReferenceLink": null, @@ -84886,7 +84886,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItem", "ApiReferenceLink": null, @@ -84901,7 +84901,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItem", "ApiReferenceLink": null, @@ -84915,7 +84915,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemActivity", "ApiReferenceLink": null, @@ -84929,7 +84929,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemActivityByInterval", "ApiReferenceLink": null, @@ -84944,7 +84944,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemAnalytic", "ApiReferenceLink": null, @@ -84974,7 +84974,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemCreatedByUser", "ApiReferenceLink": null, @@ -84989,7 +84989,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -85004,7 +85004,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -85033,7 +85033,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", @@ -85050,7 +85050,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -85065,7 +85065,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -85094,7 +85094,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -85109,7 +85109,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemDriveItem", "ApiReferenceLink": null, @@ -85154,7 +85154,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemField", "ApiReferenceLink": null, @@ -85169,7 +85169,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemVersion", "ApiReferenceLink": null, @@ -85184,7 +85184,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemVersion", "ApiReferenceLink": null, @@ -85213,7 +85213,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListItemVersionField", "ApiReferenceLink": null, @@ -85228,7 +85228,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListOperation", "ApiReferenceLink": null, @@ -85243,7 +85243,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListOperation", "ApiReferenceLink": null, @@ -85272,7 +85272,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListSubscription", "ApiReferenceLink": null, @@ -85287,7 +85287,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveListSubscription", "ApiReferenceLink": null, @@ -85316,7 +85316,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRoot", "ApiReferenceLink": null, @@ -85331,7 +85331,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootActivity", "ApiReferenceLink": null, @@ -85345,7 +85345,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", @@ -85360,7 +85360,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootAnalytic", "ApiReferenceLink": null, @@ -85375,7 +85375,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -85390,7 +85390,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -85404,7 +85404,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -85433,7 +85433,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -85448,7 +85448,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticTime", "ApiReferenceLink": null, @@ -85463,7 +85463,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootChild", "ApiReferenceLink": null, @@ -85478,7 +85478,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootChild", "ApiReferenceLink": null, @@ -85567,7 +85567,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootCreatedByUser", "ApiReferenceLink": null, @@ -85582,7 +85582,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -85597,7 +85597,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -85626,7 +85626,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", @@ -85692,7 +85692,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootItemLastModifiedByUser", "ApiReferenceLink": null, @@ -85707,7 +85707,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -85722,7 +85722,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -85751,7 +85751,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootLastModifiedByUser", "ApiReferenceLink": null, @@ -85766,7 +85766,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -85781,7 +85781,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -85810,7 +85810,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItem", "ApiReferenceLink": null, @@ -85825,7 +85825,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemActivity", "ApiReferenceLink": null, @@ -85839,7 +85839,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemActivityByInterval", "ApiReferenceLink": null, @@ -85854,7 +85854,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemAnalytic", "ApiReferenceLink": null, @@ -85869,7 +85869,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemCreatedByUser", "ApiReferenceLink": null, @@ -85884,7 +85884,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -85899,7 +85899,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -85928,7 +85928,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -85943,7 +85943,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -85972,7 +85972,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -85987,7 +85987,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDriveItem", "ApiReferenceLink": null, @@ -86032,7 +86032,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemField", "ApiReferenceLink": null, @@ -86047,7 +86047,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemVersion", "ApiReferenceLink": null, @@ -86062,7 +86062,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemVersion", "ApiReferenceLink": null, @@ -86091,7 +86091,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -86106,7 +86106,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootPermission", "ApiReferenceLink": null, @@ -86121,7 +86121,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootPermission", "ApiReferenceLink": null, @@ -86150,7 +86150,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -86165,7 +86165,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootSubscription", "ApiReferenceLink": null, @@ -86180,7 +86180,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootSubscription", "ApiReferenceLink": null, @@ -86209,7 +86209,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootThumbnail", "ApiReferenceLink": null, @@ -86224,7 +86224,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootThumbnail", "ApiReferenceLink": null, @@ -86253,7 +86253,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootVersion", "ApiReferenceLink": null, @@ -86268,7 +86268,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveRootVersion", "ApiReferenceLink": null, @@ -86312,7 +86312,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveSpecial", "ApiReferenceLink": null, @@ -86327,7 +86327,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaDriveSpecial", "ApiReferenceLink": null, @@ -86386,7 +86386,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClass", "ApiReferenceLink": null, @@ -86426,7 +86426,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClass", "ApiReferenceLink": null, @@ -86465,7 +86465,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignment", "ApiReferenceLink": null, @@ -86545,7 +86545,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignment", "ApiReferenceLink": null, @@ -86624,7 +86624,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -86704,7 +86704,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -86945,7 +86945,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentCategoryDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-beta", @@ -87107,7 +87107,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentDefault", "ApiReferenceLink": null, @@ -87187,7 +87187,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-beta", @@ -87267,7 +87267,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentGradingCategory", "ApiReferenceLink": null, @@ -87282,7 +87282,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentGradingScheme", "ApiReferenceLink": null, @@ -87297,7 +87297,7 @@ "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -87377,7 +87377,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -87536,7 +87536,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -87551,7 +87551,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -87694,7 +87694,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentRubric", "ApiReferenceLink": null, @@ -87854,7 +87854,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSetting", "ApiReferenceLink": null, @@ -87934,7 +87934,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingDefaultGradingScheme", "ApiReferenceLink": null, @@ -87949,7 +87949,7 @@ "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -87964,7 +87964,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -87993,7 +87993,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingScheme", "ApiReferenceLink": null, @@ -88041,7 +88041,7 @@ "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingScheme", "ApiReferenceLink": null, @@ -88070,7 +88070,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -88150,7 +88150,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -88309,7 +88309,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -88324,7 +88324,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -88419,7 +88419,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -88499,7 +88499,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -88658,7 +88658,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -88673,7 +88673,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -88816,7 +88816,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -88896,7 +88896,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -89055,7 +89055,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -89070,7 +89070,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -89268,7 +89268,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-delta?view=graph-rest-beta", @@ -89331,7 +89331,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassGroup", "ApiReferenceLink": null, @@ -89395,7 +89395,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -89424,7 +89424,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassMember", "ApiReferenceLink": null, @@ -89566,7 +89566,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassModule", "ApiReferenceLink": null, @@ -89614,7 +89614,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassModule", "ApiReferenceLink": null, @@ -89709,7 +89709,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassModuleResource", "ApiReferenceLink": null, @@ -89757,7 +89757,7 @@ "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassModuleResource", "ApiReferenceLink": null, @@ -89852,7 +89852,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassSchool", "ApiReferenceLink": null, @@ -89867,7 +89867,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassSchool", "ApiReferenceLink": null, @@ -89946,7 +89946,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationClassTeacher", "ApiReferenceLink": null, @@ -90064,7 +90064,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMe", "ApiReferenceLink": null, @@ -90103,7 +90103,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignment", "ApiReferenceLink": null, @@ -90118,7 +90118,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignment", "ApiReferenceLink": null, @@ -90197,7 +90197,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentCategory", "ApiReferenceLink": null, @@ -90240,7 +90240,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentCategoryDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-beta", @@ -90334,7 +90334,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-beta", @@ -90348,7 +90348,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentGradingCategory", "ApiReferenceLink": null, @@ -90363,7 +90363,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentGradingScheme", "ApiReferenceLink": null, @@ -90378,7 +90378,7 @@ "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -90393,7 +90393,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -90422,7 +90422,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -90437,7 +90437,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -90466,7 +90466,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentRubric", "ApiReferenceLink": null, @@ -90496,7 +90496,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -90511,7 +90511,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -90540,7 +90540,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -90555,7 +90555,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -90584,7 +90584,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -90599,7 +90599,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -90628,7 +90628,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -90643,7 +90643,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -90672,7 +90672,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -90687,7 +90687,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -90716,7 +90716,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -90731,7 +90731,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -90760,7 +90760,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeClass", "ApiReferenceLink": null, @@ -90775,7 +90775,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeClass", "ApiReferenceLink": null, @@ -90853,7 +90853,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeRubric", "ApiReferenceLink": null, @@ -90901,7 +90901,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeRubric", "ApiReferenceLink": null, @@ -90995,7 +90995,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeSchool", "ApiReferenceLink": null, @@ -91010,7 +91010,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeSchool", "ApiReferenceLink": null, @@ -91088,7 +91088,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeTaughtClass", "ApiReferenceLink": null, @@ -91103,7 +91103,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeTaughtClass", "ApiReferenceLink": null, @@ -91181,7 +91181,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeUser", "ApiReferenceLink": null, @@ -91252,7 +91252,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeUserMailboxSetting", "ApiReferenceLink": null, @@ -91266,7 +91266,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationMeUserServiceProvisioningError", "ApiReferenceLink": null, @@ -91294,7 +91294,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationRoot", "ApiReferenceLink": null, @@ -91308,7 +91308,7 @@ "OutputType": "IMicrosoftGraphEducationRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchool", "ApiReferenceLink": null, @@ -91348,7 +91348,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchool", "ApiReferenceLink": null, @@ -91387,7 +91387,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchoolAdministrativeUnit", "ApiReferenceLink": null, @@ -91451,7 +91451,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchoolClass", "ApiReferenceLink": null, @@ -91608,7 +91608,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchoolDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-delta?view=graph-rest-beta", @@ -91679,7 +91679,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSchoolUser", "ApiReferenceLink": null, @@ -91773,7 +91773,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSynchronizationProfile", "ApiReferenceLink": null, @@ -91821,7 +91821,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSynchronizationProfile", "ApiReferenceLink": null, @@ -91915,7 +91915,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSynchronizationProfileError", "ApiReferenceLink": null, @@ -91930,7 +91930,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationError" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSynchronizationProfileError", "ApiReferenceLink": null, @@ -92025,7 +92025,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationSynchronizationProfileStatus", "ApiReferenceLink": null, @@ -92073,7 +92073,7 @@ "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUser", "ApiReferenceLink": null, @@ -92115,7 +92115,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUser", "ApiReferenceLink": null, @@ -92146,7 +92146,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignment", "ApiReferenceLink": null, @@ -92161,7 +92161,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignment", "ApiReferenceLink": null, @@ -92240,7 +92240,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentCategory", "ApiReferenceLink": null, @@ -92283,7 +92283,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentCategoryDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-beta", @@ -92378,7 +92378,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-beta", @@ -92393,7 +92393,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentGradingCategory", "ApiReferenceLink": null, @@ -92408,7 +92408,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentGradingScheme", "ApiReferenceLink": null, @@ -92423,7 +92423,7 @@ "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -92438,7 +92438,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -92467,7 +92467,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -92482,7 +92482,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResource", "ApiReferenceLink": null, @@ -92511,7 +92511,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentRubric", "ApiReferenceLink": null, @@ -92541,7 +92541,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -92556,7 +92556,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -92585,7 +92585,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -92600,7 +92600,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -92629,7 +92629,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -92644,7 +92644,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -92673,7 +92673,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -92688,7 +92688,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", "ApiReferenceLink": null, @@ -92717,7 +92717,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -92732,7 +92732,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -92761,7 +92761,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -92776,7 +92776,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", "ApiReferenceLink": null, @@ -92805,7 +92805,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserClass", "ApiReferenceLink": null, @@ -92820,7 +92820,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserClass", "ApiReferenceLink": null, @@ -92930,7 +92930,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-delta?view=graph-rest-beta", @@ -93001,7 +93001,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserMailboxSetting", "ApiReferenceLink": null, @@ -93016,7 +93016,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserRubric", "ApiReferenceLink": null, @@ -93031,7 +93031,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserRubric", "ApiReferenceLink": null, @@ -93060,7 +93060,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserSchool", "ApiReferenceLink": null, @@ -93075,7 +93075,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserSchool", "ApiReferenceLink": null, @@ -93154,7 +93154,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserServiceProvisioningError", "ApiReferenceLink": null, @@ -93183,7 +93183,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserTaughtClass", "ApiReferenceLink": null, @@ -93198,7 +93198,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEducationUserTaughtClass", "ApiReferenceLink": null, @@ -93277,7 +93277,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -93309,7 +93309,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -93372,7 +93372,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignment", "ApiReferenceLink": null, @@ -93387,7 +93387,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignment", "ApiReferenceLink": null, @@ -93418,7 +93418,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentAdditional", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-additionalaccess?view=graph-rest-beta", @@ -93511,7 +93511,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -93543,7 +93543,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -93605,7 +93605,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", "ApiReferenceLink": null, @@ -93620,7 +93620,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionHandler" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", "ApiReferenceLink": null, @@ -93634,7 +93634,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionHandler" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -93649,7 +93649,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -93663,7 +93663,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequest", "ApiReferenceLink": null, @@ -93695,7 +93695,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequest", "ApiReferenceLink": null, @@ -93757,7 +93757,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole", "ApiReferenceLink": null, @@ -93789,7 +93789,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole", "ApiReferenceLink": null, @@ -93851,7 +93851,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalog", "ApiReferenceLink": null, @@ -93883,7 +93883,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalog", "ApiReferenceLink": null, @@ -93914,7 +93914,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", "ApiReferenceLink": null, @@ -93946,7 +93946,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", "ApiReferenceLink": null, @@ -93977,7 +93977,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResource", "ApiReferenceLink": null, @@ -94008,7 +94008,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceRole", "ApiReferenceLink": null, @@ -94039,7 +94039,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceScope", "ApiReferenceLink": null, @@ -94084,7 +94084,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", "ApiReferenceLink": null, @@ -94116,7 +94116,7 @@ "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", "ApiReferenceLink": null, @@ -94178,7 +94178,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackage", "ApiReferenceLink": null, @@ -94240,7 +94240,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleGroup", "ApiReferenceLink": null, @@ -94302,7 +94302,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleWith", "ApiReferenceLink": null, @@ -94317,7 +94317,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleWith", "ApiReferenceLink": null, @@ -94348,7 +94348,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResource", "ApiReferenceLink": null, @@ -94363,7 +94363,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResource", "ApiReferenceLink": null, @@ -94391,7 +94391,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment", "ApiReferenceLink": null, @@ -94423,7 +94423,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment", "ApiReferenceLink": null, @@ -94500,7 +94500,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequest", "ApiReferenceLink": null, @@ -94515,7 +94515,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequest", "ApiReferenceLink": null, @@ -94577,7 +94577,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAssignmentRequest", "ApiReferenceLink": null, @@ -94609,7 +94609,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAssignmentRequest", "ApiReferenceLink": null, @@ -94640,7 +94640,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAssignmentRequestAccessPackageAssignment", "ApiReferenceLink": null, @@ -94686,7 +94686,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAssignmentRequestRequestorConnectedOrganization", "ApiReferenceLink": null, @@ -94701,7 +94701,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -94733,7 +94733,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -94795,7 +94795,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsor", "ApiReferenceLink": null, @@ -94889,7 +94889,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsor", "ApiReferenceLink": null, @@ -94983,7 +94983,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSetting", "ApiReferenceLink": null, @@ -95014,7 +95014,7 @@ "OutputType": "IMicrosoftGraphEntitlementManagementSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubject", "ApiReferenceLink": null, @@ -95029,7 +95029,7 @@ "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubject", "ApiReferenceLink": null, @@ -95043,7 +95043,7 @@ "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubjectByObjectId", "ApiReferenceLink": null, @@ -95058,7 +95058,7 @@ "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubjectConnectedOrganization", "ApiReferenceLink": null, @@ -95087,7 +95087,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternal", "ApiReferenceLink": null, @@ -95101,7 +95101,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalAuthorizationSystem", "ApiReferenceLink": null, @@ -95116,7 +95116,7 @@ "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalAuthorizationSystem", "ApiReferenceLink": null, @@ -95144,7 +95144,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalAuthorizationSystemDataCollectionInfo", "ApiReferenceLink": null, @@ -95159,7 +95159,7 @@ "OutputType": "IMicrosoftGraphDataCollectionInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnection", "ApiReferenceLink": null, @@ -95199,7 +95199,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnection", "ApiReferenceLink": null, @@ -95277,7 +95277,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroup", "ApiReferenceLink": null, @@ -95317,7 +95317,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroup", "ApiReferenceLink": null, @@ -95346,7 +95346,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -95361,7 +95361,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -95390,7 +95390,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionItem", "ApiReferenceLink": null, @@ -95430,7 +95430,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionItem", "ApiReferenceLink": null, @@ -95444,7 +95444,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -95459,7 +95459,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -95488,7 +95488,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemActivityPerformedBy", "ApiReferenceLink": null, @@ -95518,7 +95518,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionOperation", "ApiReferenceLink": null, @@ -95558,7 +95558,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionOperation", "ApiReferenceLink": null, @@ -95587,7 +95587,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionQuota", "ApiReferenceLink": null, @@ -95602,7 +95602,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionQuota" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalConnectionSchema", "ApiReferenceLink": null, @@ -95642,7 +95642,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryData", "ApiReferenceLink": null, @@ -95656,7 +95656,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataConnector", "ApiReferenceLink": null, @@ -95688,7 +95688,7 @@ "OutputType": "IMicrosoftGraphIndustryDataConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataConnector", "ApiReferenceLink": null, @@ -95750,7 +95750,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataConnectorSourceSystem", "ApiReferenceLink": null, @@ -95765,7 +95765,7 @@ "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataInboundFlow", "ApiReferenceLink": null, @@ -95797,7 +95797,7 @@ "OutputType": "IMicrosoftGraphIndustryDataInboundFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataInboundFlow", "ApiReferenceLink": null, @@ -95859,7 +95859,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataInboundFlowDataConnector", "ApiReferenceLink": null, @@ -95891,7 +95891,7 @@ "OutputType": "IMicrosoftGraphIndustryDataConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataInboundFlowYear", "ApiReferenceLink": null, @@ -95923,7 +95923,7 @@ "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOperation", "ApiReferenceLink": null, @@ -95938,7 +95938,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOperation", "ApiReferenceLink": null, @@ -95966,7 +95966,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", "ApiReferenceLink": null, @@ -95981,7 +95981,7 @@ "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", "ApiReferenceLink": null, @@ -96009,7 +96009,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", "ApiReferenceLink": null, @@ -96024,7 +96024,7 @@ "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", "ApiReferenceLink": null, @@ -96053,7 +96053,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataReferenceDefinition", "ApiReferenceLink": null, @@ -96068,7 +96068,7 @@ "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataReferenceDefinition", "ApiReferenceLink": null, @@ -96096,7 +96096,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRoleGroup", "ApiReferenceLink": null, @@ -96111,7 +96111,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRoleGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRoleGroup", "ApiReferenceLink": null, @@ -96139,7 +96139,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRun", "ApiReferenceLink": null, @@ -96154,7 +96154,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRun", "ApiReferenceLink": null, @@ -96168,7 +96168,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunActivity", "ApiReferenceLink": null, @@ -96185,7 +96185,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRunActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunActivity", "ApiReferenceLink": null, @@ -96244,7 +96244,7 @@ "OutputType": "IMicrosoftGraphIndustryDataRunStatistics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataSourceSystem", "ApiReferenceLink": null, @@ -96276,7 +96276,7 @@ "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataSourceSystem", "ApiReferenceLink": null, @@ -96338,7 +96338,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataYear", "ApiReferenceLink": null, @@ -96370,7 +96370,7 @@ "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataYear", "ApiReferenceLink": null, @@ -96432,7 +96432,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancial", "ApiReferenceLink": null, @@ -96446,7 +96446,7 @@ "OutputType": "IMicrosoftGraphFinancials" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompany", "ApiReferenceLink": null, @@ -96461,7 +96461,7 @@ "OutputType": "IMicrosoftGraphCompany" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompany", "ApiReferenceLink": null, @@ -96475,7 +96475,7 @@ "OutputType": "IMicrosoftGraphCompany" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAccount", "ApiReferenceLink": null, @@ -96490,7 +96490,7 @@ "OutputType": "IMicrosoftGraphAccount" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAccount", "ApiReferenceLink": null, @@ -96519,7 +96519,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountPayable", "ApiReferenceLink": null, @@ -96534,7 +96534,7 @@ "OutputType": "IMicrosoftGraphAgedAccountsPayable" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountPayable", "ApiReferenceLink": null, @@ -96563,7 +96563,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivable", "ApiReferenceLink": null, @@ -96578,7 +96578,7 @@ "OutputType": "IMicrosoftGraphAgedAccountsReceivable" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivable", "ApiReferenceLink": null, @@ -96621,7 +96621,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCountryRegion", "ApiReferenceLink": null, @@ -96636,7 +96636,7 @@ "OutputType": "IMicrosoftGraphCountryRegion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCountryRegion", "ApiReferenceLink": null, @@ -96665,7 +96665,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCurrency", "ApiReferenceLink": null, @@ -96680,7 +96680,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCurrency", "ApiReferenceLink": null, @@ -96709,7 +96709,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomer", "ApiReferenceLink": null, @@ -96724,7 +96724,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomer", "ApiReferenceLink": null, @@ -96753,7 +96753,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerCurrency", "ApiReferenceLink": null, @@ -96768,7 +96768,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPayment", "ApiReferenceLink": null, @@ -96783,7 +96783,7 @@ "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPayment", "ApiReferenceLink": null, @@ -96812,7 +96812,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomer", "ApiReferenceLink": null, @@ -96827,7 +96827,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency", "ApiReferenceLink": null, @@ -96842,7 +96842,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -96857,7 +96857,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -96901,7 +96901,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod", "ApiReferenceLink": null, @@ -96916,7 +96916,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournal", "ApiReferenceLink": null, @@ -96931,7 +96931,7 @@ "OutputType": "IMicrosoftGraphCustomerPaymentJournal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournal", "ApiReferenceLink": null, @@ -96945,7 +96945,7 @@ "OutputType": "IMicrosoftGraphCustomerPaymentJournal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalAccount", "ApiReferenceLink": null, @@ -96975,7 +96975,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", "ApiReferenceLink": null, @@ -96990,7 +96990,7 @@ "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", "ApiReferenceLink": null, @@ -97019,7 +97019,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", "ApiReferenceLink": null, @@ -97034,7 +97034,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", "ApiReferenceLink": null, @@ -97049,7 +97049,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -97064,7 +97064,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "ApiReferenceLink": null, @@ -97108,7 +97108,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", "ApiReferenceLink": null, @@ -97123,7 +97123,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", "ApiReferenceLink": null, @@ -97138,7 +97138,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", "ApiReferenceLink": null, @@ -97153,7 +97153,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentMethod", "ApiReferenceLink": null, @@ -97170,7 +97170,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentTerm", "ApiReferenceLink": null, @@ -97187,7 +97187,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPicture", "ApiReferenceLink": null, @@ -97202,7 +97202,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPicture", "ApiReferenceLink": null, @@ -97246,7 +97246,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerShipmentMethod", "ApiReferenceLink": null, @@ -97261,7 +97261,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimension", "ApiReferenceLink": null, @@ -97276,7 +97276,7 @@ "OutputType": "IMicrosoftGraphDimension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimension", "ApiReferenceLink": null, @@ -97305,7 +97305,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimensionValue", "ApiReferenceLink": null, @@ -97322,7 +97322,7 @@ "OutputType": "IMicrosoftGraphDimensionValue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimensionValue", "ApiReferenceLink": null, @@ -97354,7 +97354,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployee", "ApiReferenceLink": null, @@ -97369,7 +97369,7 @@ "OutputType": "IMicrosoftGraphEmployee" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployee", "ApiReferenceLink": null, @@ -97398,7 +97398,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeePicture", "ApiReferenceLink": null, @@ -97413,7 +97413,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeePicture", "ApiReferenceLink": null, @@ -97457,7 +97457,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntry", "ApiReferenceLink": null, @@ -97472,7 +97472,7 @@ "OutputType": "IMicrosoftGraphGeneralLedgerEntry" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntry", "ApiReferenceLink": null, @@ -97486,7 +97486,7 @@ "OutputType": "IMicrosoftGraphGeneralLedgerEntry" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntryAccount", "ApiReferenceLink": null, @@ -97516,7 +97516,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyInformation", "ApiReferenceLink": null, @@ -97531,7 +97531,7 @@ "OutputType": "IMicrosoftGraphCompanyInformation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyInformation", "ApiReferenceLink": null, @@ -97575,7 +97575,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItem", "ApiReferenceLink": null, @@ -97590,7 +97590,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItem", "ApiReferenceLink": null, @@ -97604,7 +97604,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemCategory", "ApiReferenceLink": null, @@ -97621,7 +97621,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemCategory", "ApiReferenceLink": null, @@ -97665,7 +97665,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemPicture", "ApiReferenceLink": null, @@ -97680,7 +97680,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemPicture", "ApiReferenceLink": null, @@ -97724,7 +97724,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournal", "ApiReferenceLink": null, @@ -97739,7 +97739,7 @@ "OutputType": "IMicrosoftGraphJournal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournal", "ApiReferenceLink": null, @@ -97753,7 +97753,7 @@ "OutputType": "IMicrosoftGraphJournal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalAccount", "ApiReferenceLink": null, @@ -97783,7 +97783,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalLine", "ApiReferenceLink": null, @@ -97800,7 +97800,7 @@ "OutputType": "IMicrosoftGraphJournalLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalLine", "ApiReferenceLink": null, @@ -97815,7 +97815,7 @@ "OutputType": "IMicrosoftGraphJournalLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalLineAccount", "ApiReferenceLink": null, @@ -97849,7 +97849,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentMethod", "ApiReferenceLink": null, @@ -97864,7 +97864,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentMethod", "ApiReferenceLink": null, @@ -97893,7 +97893,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentTerm", "ApiReferenceLink": null, @@ -97908,7 +97908,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentTerm", "ApiReferenceLink": null, @@ -97937,7 +97937,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPicture", "ApiReferenceLink": null, @@ -97952,7 +97952,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPicture", "ApiReferenceLink": null, @@ -97996,7 +97996,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoice", "ApiReferenceLink": null, @@ -98011,7 +98011,7 @@ "OutputType": "IMicrosoftGraphPurchaseInvoice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoice", "ApiReferenceLink": null, @@ -98040,7 +98040,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceCurrency", "ApiReferenceLink": null, @@ -98055,7 +98055,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLine", "ApiReferenceLink": null, @@ -98072,7 +98072,7 @@ "OutputType": "IMicrosoftGraphPurchaseInvoiceLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLine", "ApiReferenceLink": null, @@ -98087,7 +98087,7 @@ "OutputType": "IMicrosoftGraphPurchaseInvoiceLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineAccount", "ApiReferenceLink": null, @@ -98121,7 +98121,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItem", "ApiReferenceLink": null, @@ -98138,7 +98138,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory", "ApiReferenceLink": null, @@ -98155,7 +98155,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -98172,7 +98172,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -98221,7 +98221,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendor", "ApiReferenceLink": null, @@ -98236,7 +98236,7 @@ "OutputType": "IMicrosoftGraphVendor" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency", "ApiReferenceLink": null, @@ -98251,7 +98251,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod", "ApiReferenceLink": null, @@ -98266,7 +98266,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm", "ApiReferenceLink": null, @@ -98281,7 +98281,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", "ApiReferenceLink": null, @@ -98296,7 +98296,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", "ApiReferenceLink": null, @@ -98340,7 +98340,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemo", "ApiReferenceLink": null, @@ -98355,7 +98355,7 @@ "OutputType": "IMicrosoftGraphSalesCreditMemo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemo", "ApiReferenceLink": null, @@ -98384,7 +98384,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCurrency", "ApiReferenceLink": null, @@ -98399,7 +98399,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomer", "ApiReferenceLink": null, @@ -98414,7 +98414,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency", "ApiReferenceLink": null, @@ -98429,7 +98429,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod", "ApiReferenceLink": null, @@ -98444,7 +98444,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm", "ApiReferenceLink": null, @@ -98459,7 +98459,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", "ApiReferenceLink": null, @@ -98474,7 +98474,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", "ApiReferenceLink": null, @@ -98518,7 +98518,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod", "ApiReferenceLink": null, @@ -98533,7 +98533,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLine", "ApiReferenceLink": null, @@ -98548,7 +98548,7 @@ "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLine", "ApiReferenceLink": null, @@ -98562,7 +98562,7 @@ "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineAccount", "ApiReferenceLink": null, @@ -98592,7 +98592,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItem", "ApiReferenceLink": null, @@ -98607,7 +98607,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemCategory", "ApiReferenceLink": null, @@ -98622,7 +98622,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -98637,7 +98637,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -98681,7 +98681,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoPaymentTerm", "ApiReferenceLink": null, @@ -98696,7 +98696,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine", "ApiReferenceLink": null, @@ -98711,7 +98711,7 @@ "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine", "ApiReferenceLink": null, @@ -98725,7 +98725,7 @@ "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount", "ApiReferenceLink": null, @@ -98755,7 +98755,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", "ApiReferenceLink": null, @@ -98770,7 +98770,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", "ApiReferenceLink": null, @@ -98785,7 +98785,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -98800,7 +98800,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "ApiReferenceLink": null, @@ -98844,7 +98844,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoice", "ApiReferenceLink": null, @@ -98859,7 +98859,7 @@ "OutputType": "IMicrosoftGraphSalesInvoice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoice", "ApiReferenceLink": null, @@ -98888,7 +98888,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCurrency", "ApiReferenceLink": null, @@ -98903,7 +98903,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomer", "ApiReferenceLink": null, @@ -98918,7 +98918,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerCurrency", "ApiReferenceLink": null, @@ -98933,7 +98933,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod", "ApiReferenceLink": null, @@ -98948,7 +98948,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm", "ApiReferenceLink": null, @@ -98963,7 +98963,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPicture", "ApiReferenceLink": null, @@ -98978,7 +98978,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPicture", "ApiReferenceLink": null, @@ -99022,7 +99022,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod", "ApiReferenceLink": null, @@ -99037,7 +99037,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLine", "ApiReferenceLink": null, @@ -99054,7 +99054,7 @@ "OutputType": "IMicrosoftGraphSalesInvoiceLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLine", "ApiReferenceLink": null, @@ -99069,7 +99069,7 @@ "OutputType": "IMicrosoftGraphSalesInvoiceLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineAccount", "ApiReferenceLink": null, @@ -99103,7 +99103,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItem", "ApiReferenceLink": null, @@ -99120,7 +99120,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemCategory", "ApiReferenceLink": null, @@ -99137,7 +99137,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -99154,7 +99154,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPicture", "ApiReferenceLink": null, @@ -99203,7 +99203,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoicePaymentTerm", "ApiReferenceLink": null, @@ -99218,7 +99218,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceShipmentMethod", "ApiReferenceLink": null, @@ -99233,7 +99233,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrder", "ApiReferenceLink": null, @@ -99248,7 +99248,7 @@ "OutputType": "IMicrosoftGraphSalesOrder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrder", "ApiReferenceLink": null, @@ -99277,7 +99277,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCurrency", "ApiReferenceLink": null, @@ -99292,7 +99292,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomer", "ApiReferenceLink": null, @@ -99307,7 +99307,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerCurrency", "ApiReferenceLink": null, @@ -99322,7 +99322,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod", "ApiReferenceLink": null, @@ -99337,7 +99337,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm", "ApiReferenceLink": null, @@ -99352,7 +99352,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPicture", "ApiReferenceLink": null, @@ -99367,7 +99367,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPicture", "ApiReferenceLink": null, @@ -99411,7 +99411,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod", "ApiReferenceLink": null, @@ -99426,7 +99426,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLine", "ApiReferenceLink": null, @@ -99443,7 +99443,7 @@ "OutputType": "IMicrosoftGraphSalesOrderLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLine", "ApiReferenceLink": null, @@ -99458,7 +99458,7 @@ "OutputType": "IMicrosoftGraphSalesOrderLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineAccount", "ApiReferenceLink": null, @@ -99492,7 +99492,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItem", "ApiReferenceLink": null, @@ -99509,7 +99509,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemCategory", "ApiReferenceLink": null, @@ -99526,7 +99526,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPicture", "ApiReferenceLink": null, @@ -99543,7 +99543,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPicture", "ApiReferenceLink": null, @@ -99592,7 +99592,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderPaymentTerm", "ApiReferenceLink": null, @@ -99607,7 +99607,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuote", "ApiReferenceLink": null, @@ -99622,7 +99622,7 @@ "OutputType": "IMicrosoftGraphSalesQuote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuote", "ApiReferenceLink": null, @@ -99651,7 +99651,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCurrency", "ApiReferenceLink": null, @@ -99666,7 +99666,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomer", "ApiReferenceLink": null, @@ -99681,7 +99681,7 @@ "OutputType": "IMicrosoftGraphCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerCurrency", "ApiReferenceLink": null, @@ -99696,7 +99696,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod", "ApiReferenceLink": null, @@ -99711,7 +99711,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm", "ApiReferenceLink": null, @@ -99726,7 +99726,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPicture", "ApiReferenceLink": null, @@ -99741,7 +99741,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPicture", "ApiReferenceLink": null, @@ -99785,7 +99785,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod", "ApiReferenceLink": null, @@ -99800,7 +99800,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLine", "ApiReferenceLink": null, @@ -99817,7 +99817,7 @@ "OutputType": "IMicrosoftGraphSalesQuoteLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLine", "ApiReferenceLink": null, @@ -99832,7 +99832,7 @@ "OutputType": "IMicrosoftGraphSalesQuoteLine" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineAccount", "ApiReferenceLink": null, @@ -99866,7 +99866,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItem", "ApiReferenceLink": null, @@ -99883,7 +99883,7 @@ "OutputType": "IMicrosoftGraphItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemCategory", "ApiReferenceLink": null, @@ -99900,7 +99900,7 @@ "OutputType": "IMicrosoftGraphItemCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPicture", "ApiReferenceLink": null, @@ -99917,7 +99917,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPicture", "ApiReferenceLink": null, @@ -99966,7 +99966,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuotePaymentTerm", "ApiReferenceLink": null, @@ -99981,7 +99981,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteShipmentMethod", "ApiReferenceLink": null, @@ -99996,7 +99996,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyShipmentMethod", "ApiReferenceLink": null, @@ -100011,7 +100011,7 @@ "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyShipmentMethod", "ApiReferenceLink": null, @@ -100040,7 +100040,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxArea", "ApiReferenceLink": null, @@ -100055,7 +100055,7 @@ "OutputType": "IMicrosoftGraphTaxArea" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxArea", "ApiReferenceLink": null, @@ -100084,7 +100084,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxGroup", "ApiReferenceLink": null, @@ -100099,7 +100099,7 @@ "OutputType": "IMicrosoftGraphTaxGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxGroup", "ApiReferenceLink": null, @@ -100128,7 +100128,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyUnitOfMeasure", "ApiReferenceLink": null, @@ -100143,7 +100143,7 @@ "OutputType": "IMicrosoftGraphUnitOfMeasure" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyUnitOfMeasure", "ApiReferenceLink": null, @@ -100172,7 +100172,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendor", "ApiReferenceLink": null, @@ -100187,7 +100187,7 @@ "OutputType": "IMicrosoftGraphVendor" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendor", "ApiReferenceLink": null, @@ -100216,7 +100216,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorCurrency", "ApiReferenceLink": null, @@ -100231,7 +100231,7 @@ "OutputType": "IMicrosoftGraphCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPaymentMethod", "ApiReferenceLink": null, @@ -100246,7 +100246,7 @@ "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPaymentTerm", "ApiReferenceLink": null, @@ -100261,7 +100261,7 @@ "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPicture", "ApiReferenceLink": null, @@ -100276,7 +100276,7 @@ "OutputType": "IMicrosoftGraphPicture" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPicture", "ApiReferenceLink": null, @@ -100320,7 +100320,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-beta", @@ -100376,7 +100376,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list?view=graph-rest-beta", @@ -100525,7 +100525,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -100540,7 +100540,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -100634,7 +100634,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-beta", @@ -100705,7 +100705,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupCalendarEvent", "ApiReferenceLink": null, @@ -100753,7 +100753,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupCalendarEvent", "ApiReferenceLink": null, @@ -100784,7 +100784,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupCalendarEventDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", @@ -101042,7 +101042,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThread", "ApiReferenceLink": null, @@ -101090,7 +101090,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThread", "ApiReferenceLink": null, @@ -101185,7 +101185,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPost", "ApiReferenceLink": null, @@ -101235,7 +101235,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPost", "ApiReferenceLink": null, @@ -101282,7 +101282,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostAttachment", "ApiReferenceLink": null, @@ -101297,7 +101297,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostAttachment", "ApiReferenceLink": null, @@ -101440,7 +101440,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -101455,7 +101455,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -101484,7 +101484,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -101499,7 +101499,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -101528,7 +101528,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -101543,7 +101543,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -101572,7 +101572,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMention", "ApiReferenceLink": null, @@ -101587,7 +101587,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMention", "ApiReferenceLink": null, @@ -101616,7 +101616,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostMention", "ApiReferenceLink": null, @@ -101631,7 +101631,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostMention", "ApiReferenceLink": null, @@ -101715,7 +101715,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupCreatedOnBehalfOf", "ApiReferenceLink": null, @@ -101730,7 +101730,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDefaultDrive", "ApiReferenceLink": null, @@ -101794,7 +101794,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delta?view=graph-rest-beta", @@ -101849,7 +101849,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDrive", "ApiReferenceLink": null, @@ -101864,7 +101864,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDrive", "ApiReferenceLink": null, @@ -101927,7 +101927,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveActivity", "ApiReferenceLink": null, @@ -101941,7 +101941,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveBundle", "ApiReferenceLink": null, @@ -101956,7 +101956,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveBundle", "ApiReferenceLink": null, @@ -102015,7 +102015,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveContentTypeBase", "ApiReferenceLink": null, @@ -102030,7 +102030,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -102045,7 +102045,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -102138,7 +102138,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveCreatedByUser", "ApiReferenceLink": null, @@ -102153,7 +102153,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -102168,7 +102168,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -102197,7 +102197,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowing", "ApiReferenceLink": null, @@ -102212,7 +102212,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowing", "ApiReferenceLink": null, @@ -102271,7 +102271,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItem", "ApiReferenceLink": null, @@ -102286,7 +102286,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItem", "ApiReferenceLink": null, @@ -102300,7 +102300,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemActivity", "ApiReferenceLink": null, @@ -102314,7 +102314,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", @@ -102329,7 +102329,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalytic", "ApiReferenceLink": null, @@ -102344,7 +102344,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -102359,7 +102359,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -102373,7 +102373,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -102402,7 +102402,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -102417,7 +102417,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticTime", "ApiReferenceLink": null, @@ -102432,7 +102432,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChild", "ApiReferenceLink": null, @@ -102447,7 +102447,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChild", "ApiReferenceLink": null, @@ -102551,7 +102551,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCreatedByUser", "ApiReferenceLink": null, @@ -102566,7 +102566,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -102581,7 +102581,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -102610,7 +102610,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", @@ -102627,7 +102627,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUser", "ApiReferenceLink": null, @@ -102642,7 +102642,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -102657,7 +102657,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -102686,7 +102686,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemLastModifiedByUser", "ApiReferenceLink": null, @@ -102703,7 +102703,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -102720,7 +102720,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -102752,7 +102752,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItem", "ApiReferenceLink": null, @@ -102767,7 +102767,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemActivity", "ApiReferenceLink": null, @@ -102781,7 +102781,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemActivityByInterval", "ApiReferenceLink": null, @@ -102796,7 +102796,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemAnalytic", "ApiReferenceLink": null, @@ -102811,7 +102811,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUser", "ApiReferenceLink": null, @@ -102826,7 +102826,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -102841,7 +102841,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -102870,7 +102870,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -102885,7 +102885,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -102914,7 +102914,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -102929,7 +102929,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDriveItem", "ApiReferenceLink": null, @@ -102974,7 +102974,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemField", "ApiReferenceLink": null, @@ -102989,7 +102989,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -103004,7 +103004,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -103033,7 +103033,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -103048,7 +103048,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemPermission", "ApiReferenceLink": null, @@ -103063,7 +103063,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemPermission", "ApiReferenceLink": null, @@ -103092,7 +103092,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -103107,7 +103107,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -103122,7 +103122,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -103151,7 +103151,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -103166,7 +103166,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -103195,7 +103195,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemVersion", "ApiReferenceLink": null, @@ -103210,7 +103210,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveItemVersion", "ApiReferenceLink": null, @@ -103254,7 +103254,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveLastModifiedByUser", "ApiReferenceLink": null, @@ -103271,7 +103271,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -103288,7 +103288,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -103320,7 +103320,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveList", "ApiReferenceLink": null, @@ -103335,7 +103335,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListActivity", "ApiReferenceLink": null, @@ -103349,7 +103349,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListColumn", "ApiReferenceLink": null, @@ -103364,7 +103364,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListColumn", "ApiReferenceLink": null, @@ -103393,7 +103393,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListColumnSourceColumn", "ApiReferenceLink": null, @@ -103408,7 +103408,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentType", "ApiReferenceLink": null, @@ -103423,7 +103423,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentType", "ApiReferenceLink": null, @@ -103437,7 +103437,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -103452,7 +103452,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -103481,7 +103481,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -103496,7 +103496,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -103525,7 +103525,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -103540,7 +103540,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -103569,7 +103569,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -103584,7 +103584,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", @@ -103614,7 +103614,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListCreatedByUser", "ApiReferenceLink": null, @@ -103629,7 +103629,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -103644,7 +103644,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -103673,7 +103673,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListDrive", "ApiReferenceLink": null, @@ -103688,7 +103688,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItem", "ApiReferenceLink": null, @@ -103703,7 +103703,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItem", "ApiReferenceLink": null, @@ -103717,7 +103717,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemActivity", "ApiReferenceLink": null, @@ -103731,7 +103731,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemActivityByInterval", "ApiReferenceLink": null, @@ -103746,7 +103746,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemAnalytic", "ApiReferenceLink": null, @@ -103761,7 +103761,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemCreatedByUser", "ApiReferenceLink": null, @@ -103776,7 +103776,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -103791,7 +103791,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -103820,7 +103820,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", @@ -103837,7 +103837,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -103852,7 +103852,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -103881,7 +103881,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -103896,7 +103896,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDriveItem", "ApiReferenceLink": null, @@ -103941,7 +103941,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemField", "ApiReferenceLink": null, @@ -103956,7 +103956,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -103971,7 +103971,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -104000,7 +104000,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemVersionField", "ApiReferenceLink": null, @@ -104015,7 +104015,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListOperation", "ApiReferenceLink": null, @@ -104030,7 +104030,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListOperation", "ApiReferenceLink": null, @@ -104059,7 +104059,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListSubscription", "ApiReferenceLink": null, @@ -104074,7 +104074,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveListSubscription", "ApiReferenceLink": null, @@ -104103,7 +104103,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRoot", "ApiReferenceLink": null, @@ -104118,7 +104118,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootActivity", "ApiReferenceLink": null, @@ -104132,7 +104132,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", @@ -104147,7 +104147,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalytic", "ApiReferenceLink": null, @@ -104162,7 +104162,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -104177,7 +104177,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -104191,7 +104191,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -104220,7 +104220,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -104235,7 +104235,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticTime", "ApiReferenceLink": null, @@ -104250,7 +104250,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChild", "ApiReferenceLink": null, @@ -104265,7 +104265,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChild", "ApiReferenceLink": null, @@ -104354,7 +104354,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootCreatedByUser", "ApiReferenceLink": null, @@ -104369,7 +104369,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -104384,7 +104384,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -104413,7 +104413,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", @@ -104430,7 +104430,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUser", "ApiReferenceLink": null, @@ -104445,7 +104445,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -104460,7 +104460,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -104489,7 +104489,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootLastModifiedByUser", "ApiReferenceLink": null, @@ -104504,7 +104504,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -104519,7 +104519,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -104548,7 +104548,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItem", "ApiReferenceLink": null, @@ -104563,7 +104563,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemActivity", "ApiReferenceLink": null, @@ -104577,7 +104577,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemActivityByInterval", "ApiReferenceLink": null, @@ -104592,7 +104592,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemAnalytic", "ApiReferenceLink": null, @@ -104607,7 +104607,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUser", "ApiReferenceLink": null, @@ -104622,7 +104622,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -104637,7 +104637,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -104666,7 +104666,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -104681,7 +104681,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -104710,7 +104710,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -104725,7 +104725,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDriveItem", "ApiReferenceLink": null, @@ -104770,7 +104770,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemField", "ApiReferenceLink": null, @@ -104785,7 +104785,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -104800,7 +104800,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -104829,7 +104829,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -104844,7 +104844,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootPermission", "ApiReferenceLink": null, @@ -104859,7 +104859,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootPermission", "ApiReferenceLink": null, @@ -104888,7 +104888,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -104903,7 +104903,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -104918,7 +104918,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -104947,7 +104947,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -104962,7 +104962,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -104991,7 +104991,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootVersion", "ApiReferenceLink": null, @@ -105006,7 +105006,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveRootVersion", "ApiReferenceLink": null, @@ -105050,7 +105050,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecial", "ApiReferenceLink": null, @@ -105065,7 +105065,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecial", "ApiReferenceLink": null, @@ -105124,7 +105124,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEndpoint", "ApiReferenceLink": null, @@ -105156,7 +105156,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEndpoint", "ApiReferenceLink": null, @@ -105298,7 +105298,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventAttachment", "ApiReferenceLink": null, @@ -105313,7 +105313,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventAttachment", "ApiReferenceLink": null, @@ -105389,7 +105389,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", @@ -105429,7 +105429,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrence", "ApiReferenceLink": null, @@ -105444,7 +105444,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrence", "ApiReferenceLink": null, @@ -105458,7 +105458,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -105473,7 +105473,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -105532,7 +105532,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -105547,7 +105547,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -105605,7 +105605,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachment", "ApiReferenceLink": null, @@ -105620,7 +105620,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachment", "ApiReferenceLink": null, @@ -105679,7 +105679,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -105694,7 +105694,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -105723,7 +105723,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExtension", "ApiReferenceLink": null, @@ -105738,7 +105738,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventExtension", "ApiReferenceLink": null, @@ -105813,7 +105813,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceAttachment", "ApiReferenceLink": null, @@ -105828,7 +105828,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceAttachment", "ApiReferenceLink": null, @@ -105904,7 +105904,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrence", "ApiReferenceLink": null, @@ -105919,7 +105919,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrence", "ApiReferenceLink": null, @@ -105933,7 +105933,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -105948,7 +105948,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -106007,7 +106007,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -106022,7 +106022,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -106051,7 +106051,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -106066,7 +106066,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -106095,7 +106095,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupExtension", "ApiReferenceLink": null, @@ -106110,7 +106110,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupExtension", "ApiReferenceLink": null, @@ -106139,7 +106139,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-get?view=graph-rest-beta", @@ -106173,7 +106173,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-list?view=graph-rest-beta", @@ -106204,7 +106204,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupLifecyclePolicyByGroup", "ApiReferenceLink": null, @@ -106266,7 +106266,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMember", "ApiReferenceLink": null, @@ -106321,7 +106321,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsApplication", "ApiReferenceLink": null, @@ -106336,7 +106336,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsApplication", "ApiReferenceLink": null, @@ -106350,7 +106350,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsDevice", "ApiReferenceLink": null, @@ -106365,7 +106365,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsDevice", "ApiReferenceLink": null, @@ -106379,7 +106379,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsGroup", "ApiReferenceLink": null, @@ -106394,7 +106394,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsGroup", "ApiReferenceLink": null, @@ -106408,7 +106408,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsOrgContact", "ApiReferenceLink": null, @@ -106423,7 +106423,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsOrgContact", "ApiReferenceLink": null, @@ -106437,7 +106437,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -106452,7 +106452,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -106466,7 +106466,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsUser", "ApiReferenceLink": null, @@ -106481,7 +106481,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberAsUser", "ApiReferenceLink": null, @@ -106908,7 +106908,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberOf", "ApiReferenceLink": null, @@ -106923,7 +106923,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberOf", "ApiReferenceLink": null, @@ -106970,7 +106970,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -106985,7 +106985,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -106999,7 +106999,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberOfAsGroup", "ApiReferenceLink": null, @@ -107014,7 +107014,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberOfAsGroup", "ApiReferenceLink": null, @@ -107106,7 +107106,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseError", "ApiReferenceLink": null, @@ -107121,7 +107121,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseError", "ApiReferenceLink": null, @@ -107135,7 +107135,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsApplication", "ApiReferenceLink": null, @@ -107150,7 +107150,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsApplication", "ApiReferenceLink": null, @@ -107164,7 +107164,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsDevice", "ApiReferenceLink": null, @@ -107179,7 +107179,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsDevice", "ApiReferenceLink": null, @@ -107193,7 +107193,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsGroup", "ApiReferenceLink": null, @@ -107208,7 +107208,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsGroup", "ApiReferenceLink": null, @@ -107222,7 +107222,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsOrgContact", "ApiReferenceLink": null, @@ -107237,7 +107237,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsOrgContact", "ApiReferenceLink": null, @@ -107251,7 +107251,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsServicePrincipal", "ApiReferenceLink": null, @@ -107266,7 +107266,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsServicePrincipal", "ApiReferenceLink": null, @@ -107280,7 +107280,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsUser", "ApiReferenceLink": null, @@ -107295,7 +107295,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsUser", "ApiReferenceLink": null, @@ -107414,7 +107414,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -107470,7 +107470,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -107639,7 +107639,7 @@ "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteNotebookSection", "ApiReferenceLink": null, @@ -107694,7 +107694,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -107749,7 +107749,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteOperation", "ApiReferenceLink": null, @@ -107820,7 +107820,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenotePage", "ApiReferenceLink": null, @@ -107868,7 +107868,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenotePage", "ApiReferenceLink": null, @@ -108034,7 +108034,7 @@ "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteResource", "ApiReferenceLink": null, @@ -108112,7 +108112,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteSection", "ApiReferenceLink": null, @@ -108168,7 +108168,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteSection", "ApiReferenceLink": null, @@ -108279,7 +108279,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -108335,7 +108335,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -108449,7 +108449,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -108504,7 +108504,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOnenoteSectionPage", "ApiReferenceLink": null, @@ -108551,7 +108551,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwner", "ApiReferenceLink": null, @@ -108606,7 +108606,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsApplication", "ApiReferenceLink": null, @@ -108621,7 +108621,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsApplication", "ApiReferenceLink": null, @@ -108635,7 +108635,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsDevice", "ApiReferenceLink": null, @@ -108650,7 +108650,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsDevice", "ApiReferenceLink": null, @@ -108664,7 +108664,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsGroup", "ApiReferenceLink": null, @@ -108679,7 +108679,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsGroup", "ApiReferenceLink": null, @@ -108693,7 +108693,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsOrgContact", "ApiReferenceLink": null, @@ -108708,7 +108708,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsOrgContact", "ApiReferenceLink": null, @@ -108722,7 +108722,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -108737,7 +108737,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -108751,7 +108751,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsUser", "ApiReferenceLink": null, @@ -108766,7 +108766,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsUser", "ApiReferenceLink": null, @@ -109021,7 +109021,7 @@ "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPermissionGrant", "ApiReferenceLink": null, @@ -109036,7 +109036,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPermissionGrant", "ApiReferenceLink": null, @@ -109254,7 +109254,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlanner", "ApiReferenceLink": null, @@ -109269,7 +109269,7 @@ "OutputType": "IMicrosoftGraphPlannerGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlan", "ApiReferenceLink": null, @@ -109284,7 +109284,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlan", "ApiReferenceLink": null, @@ -109347,7 +109347,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanBucket", "ApiReferenceLink": null, @@ -109361,7 +109361,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanBucketDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-delta?view=graph-rest-beta", @@ -109376,7 +109376,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanBucketTaskDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", @@ -109455,7 +109455,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-delta?view=graph-rest-beta", @@ -109487,7 +109487,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanDetail", "ApiReferenceLink": null, @@ -109502,7 +109502,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanTask", "ApiReferenceLink": null, @@ -109516,7 +109516,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanTaskDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", @@ -109625,7 +109625,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSetting", "ApiReferenceLink": null, @@ -109673,7 +109673,7 @@ "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSetting", "ApiReferenceLink": null, @@ -109768,7 +109768,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSite", "ApiReferenceLink": null, @@ -109783,7 +109783,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSite", "ApiReferenceLink": null, @@ -109797,7 +109797,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteActivityByInterval", "ApiReferenceLink": null, @@ -109812,7 +109812,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalytic", "ApiReferenceLink": null, @@ -109827,7 +109827,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -109842,7 +109842,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -109856,7 +109856,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -109871,7 +109871,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -109900,7 +109900,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItem", "ApiReferenceLink": null, @@ -109960,7 +109960,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -109975,7 +109975,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticTime", "ApiReferenceLink": null, @@ -109990,7 +109990,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteApplicableContentTypeForList", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta", @@ -110020,7 +110020,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteColumn", "ApiReferenceLink": null, @@ -110035,7 +110035,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteColumn", "ApiReferenceLink": null, @@ -110064,7 +110064,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteColumnSourceColumn", "ApiReferenceLink": null, @@ -110079,7 +110079,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentType", "ApiReferenceLink": null, @@ -110094,7 +110094,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentType", "ApiReferenceLink": null, @@ -110108,7 +110108,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeBase", "ApiReferenceLink": null, @@ -110125,7 +110125,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeBaseType", "ApiReferenceLink": null, @@ -110142,7 +110142,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeBaseType", "ApiReferenceLink": null, @@ -110174,7 +110174,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -110189,7 +110189,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -110218,7 +110218,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -110233,7 +110233,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -110262,7 +110262,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnPosition", "ApiReferenceLink": null, @@ -110277,7 +110277,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnPosition", "ApiReferenceLink": null, @@ -110306,7 +110306,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -110321,7 +110321,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", @@ -110366,7 +110366,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteCreatedByUser", "ApiReferenceLink": null, @@ -110381,7 +110381,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -110396,7 +110396,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -110425,7 +110425,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteDefaultDrive", "ApiReferenceLink": null, @@ -110440,7 +110440,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-beta", @@ -110455,7 +110455,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteDrive", "ApiReferenceLink": null, @@ -110470,7 +110470,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteDrive", "ApiReferenceLink": null, @@ -110499,7 +110499,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteExternalColumn", "ApiReferenceLink": null, @@ -110514,7 +110514,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteExternalColumn", "ApiReferenceLink": null, @@ -110543,7 +110543,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPath", "ApiReferenceLink": null, @@ -110557,7 +110557,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -110574,7 +110574,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathApplicableContentTypeForList", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta", @@ -110589,7 +110589,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathColumn", "ApiReferenceLink": null, @@ -110604,7 +110604,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathContentType", "ApiReferenceLink": null, @@ -110619,7 +110619,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathDrive", "ApiReferenceLink": null, @@ -110636,7 +110636,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathDrive", "ApiReferenceLink": null, @@ -110651,7 +110651,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathExternalColumn", "ApiReferenceLink": null, @@ -110666,7 +110666,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathInformationProtection", "ApiReferenceLink": null, @@ -110683,7 +110683,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathItem", "ApiReferenceLink": null, @@ -110698,7 +110698,7 @@ "OutputType": "IMicrosoftGraphBaseItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathList", "ApiReferenceLink": null, @@ -110712,7 +110712,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -110729,7 +110729,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathOperation", "ApiReferenceLink": null, @@ -110744,7 +110744,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathPage", "ApiReferenceLink": null, @@ -110759,7 +110759,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathPermission", "ApiReferenceLink": null, @@ -110774,7 +110774,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathRecycleBin", "ApiReferenceLink": null, @@ -110791,7 +110791,7 @@ "OutputType": "IMicrosoftGraphRecycleBin" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathSite", "ApiReferenceLink": null, @@ -110806,7 +110806,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -110823,7 +110823,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetGraphBPrePathActivityByInterval", "ApiReferenceLink": null, @@ -110853,7 +110853,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetGraphBPrePathCreatedByUser", "ApiReferenceLink": null, @@ -110870,7 +110870,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteGetGraphBPrePathLastModifiedByUser", "ApiReferenceLink": null, @@ -110887,7 +110887,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtection", "ApiReferenceLink": null, @@ -110902,7 +110902,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionBitlocker", "ApiReferenceLink": null, @@ -110917,7 +110917,7 @@ "OutputType": "IMicrosoftGraphBitlocker" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKey", "ApiReferenceLink": null, @@ -110932,7 +110932,7 @@ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKey", "ApiReferenceLink": null, @@ -110961,7 +110961,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -110976,7 +110976,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -111005,7 +111005,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionPolicy", "ApiReferenceLink": null, @@ -111020,7 +111020,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -111035,7 +111035,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -111064,7 +111064,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -111079,7 +111079,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -111108,7 +111108,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -111123,7 +111123,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -111152,7 +111152,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityPolicySetting", "ApiReferenceLink": null, @@ -111167,7 +111167,7 @@ "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -111182,7 +111182,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -111211,7 +111211,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -111226,7 +111226,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -111255,7 +111255,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteItem", "ApiReferenceLink": null, @@ -111270,7 +111270,7 @@ "OutputType": "IMicrosoftGraphBaseItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteItem", "ApiReferenceLink": null, @@ -111299,7 +111299,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteItemLastModifiedByUser", "ApiReferenceLink": null, @@ -111314,7 +111314,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -111329,7 +111329,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -111358,7 +111358,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteLastModifiedByUser", "ApiReferenceLink": null, @@ -111375,7 +111375,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -111392,7 +111392,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -111424,7 +111424,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteList", "ApiReferenceLink": null, @@ -111439,7 +111439,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteList", "ApiReferenceLink": null, @@ -111453,7 +111453,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListActivity", "ApiReferenceLink": null, @@ -111467,7 +111467,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListColumn", "ApiReferenceLink": null, @@ -111482,7 +111482,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListColumn", "ApiReferenceLink": null, @@ -111511,7 +111511,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListColumnSourceColumn", "ApiReferenceLink": null, @@ -111526,7 +111526,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentType", "ApiReferenceLink": null, @@ -111541,7 +111541,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentType", "ApiReferenceLink": null, @@ -111555,7 +111555,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -111570,7 +111570,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -111599,7 +111599,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -111614,7 +111614,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -111643,7 +111643,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -111658,7 +111658,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -111687,7 +111687,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -111702,7 +111702,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", @@ -111747,7 +111747,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListCreatedByUser", "ApiReferenceLink": null, @@ -111762,7 +111762,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -111777,7 +111777,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -111806,7 +111806,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListDrive", "ApiReferenceLink": null, @@ -111821,7 +111821,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItem", "ApiReferenceLink": null, @@ -111836,7 +111836,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItem", "ApiReferenceLink": null, @@ -111850,7 +111850,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivity", "ApiReferenceLink": null, @@ -111865,7 +111865,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivity", "ApiReferenceLink": null, @@ -111879,7 +111879,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityByInterval", "ApiReferenceLink": null, @@ -111909,7 +111909,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityDriveItem", "ApiReferenceLink": null, @@ -111954,7 +111954,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityListItem", "ApiReferenceLink": null, @@ -111969,7 +111969,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemAnalytic", "ApiReferenceLink": null, @@ -111984,7 +111984,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemCreatedByUser", "ApiReferenceLink": null, @@ -111999,7 +111999,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -112014,7 +112014,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -112043,7 +112043,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", @@ -112060,7 +112060,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -112075,7 +112075,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -112104,7 +112104,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -112119,7 +112119,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDriveItem", "ApiReferenceLink": null, @@ -112164,7 +112164,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemField", "ApiReferenceLink": null, @@ -112179,7 +112179,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -112194,7 +112194,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -112223,7 +112223,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemVersionField", "ApiReferenceLink": null, @@ -112238,7 +112238,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListOperation", "ApiReferenceLink": null, @@ -112253,7 +112253,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListOperation", "ApiReferenceLink": null, @@ -112282,7 +112282,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListSubscription", "ApiReferenceLink": null, @@ -112297,7 +112297,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteListSubscription", "ApiReferenceLink": null, @@ -112326,7 +112326,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenote", "ApiReferenceLink": null, @@ -112341,7 +112341,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -112356,7 +112356,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -112385,7 +112385,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -112400,7 +112400,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -112429,7 +112429,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -112446,7 +112446,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -112478,7 +112478,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupParentNotebook", "ApiReferenceLink": null, @@ -112493,7 +112493,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupParentSectionGroup", "ApiReferenceLink": null, @@ -112508,7 +112508,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -112523,7 +112523,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -112552,7 +112552,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -112567,7 +112567,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -112611,7 +112611,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook", "ApiReferenceLink": null, @@ -112626,7 +112626,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection", "ApiReferenceLink": null, @@ -112641,7 +112641,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook", "ApiReferenceLink": null, @@ -112656,7 +112656,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup", "ApiReferenceLink": null, @@ -112671,7 +112671,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -112686,7 +112686,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -112730,7 +112730,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageParentNotebook", "ApiReferenceLink": null, @@ -112745,7 +112745,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageParentSection", "ApiReferenceLink": null, @@ -112760,7 +112760,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionParentNotebook", "ApiReferenceLink": null, @@ -112775,7 +112775,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionParentSectionGroup", "ApiReferenceLink": null, @@ -112790,7 +112790,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -112805,7 +112805,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -112834,7 +112834,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -112849,7 +112849,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -112893,7 +112893,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePageParentNotebook", "ApiReferenceLink": null, @@ -112908,7 +112908,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePageParentSection", "ApiReferenceLink": null, @@ -112923,7 +112923,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -112938,7 +112938,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -112982,7 +112982,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -112997,7 +112997,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -113026,7 +113026,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -113043,7 +113043,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -113075,7 +113075,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupParentNotebook", "ApiReferenceLink": null, @@ -113090,7 +113090,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupParentSectionGroup", "ApiReferenceLink": null, @@ -113105,7 +113105,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -113120,7 +113120,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -113149,7 +113149,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -113164,7 +113164,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -113208,7 +113208,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageParentNotebook", "ApiReferenceLink": null, @@ -113223,7 +113223,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageParentSection", "ApiReferenceLink": null, @@ -113238,7 +113238,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionParentNotebook", "ApiReferenceLink": null, @@ -113253,7 +113253,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionParentSectionGroup", "ApiReferenceLink": null, @@ -113268,7 +113268,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -113283,7 +113283,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -113327,7 +113327,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPageParentNotebook", "ApiReferenceLink": null, @@ -113342,7 +113342,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPageParentSection", "ApiReferenceLink": null, @@ -113357,7 +113357,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionParentNotebook", "ApiReferenceLink": null, @@ -113372,7 +113372,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionParentSectionGroup", "ApiReferenceLink": null, @@ -113387,7 +113387,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOperation", "ApiReferenceLink": null, @@ -113402,7 +113402,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteOperation", "ApiReferenceLink": null, @@ -113431,7 +113431,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePage", "ApiReferenceLink": null, @@ -113446,7 +113446,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePage", "ApiReferenceLink": null, @@ -113460,7 +113460,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePage", "ApiReferenceLink": null, @@ -113475,7 +113475,7 @@ "OutputType": "IMicrosoftGraphSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePage", "ApiReferenceLink": null, @@ -113489,7 +113489,7 @@ "OutputType": "IMicrosoftGraphSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -113504,7 +113504,7 @@ "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -113519,7 +113519,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -113533,7 +113533,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -113548,7 +113548,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -113577,7 +113577,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -113592,7 +113592,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -113636,7 +113636,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -113651,7 +113651,7 @@ "OutputType": "IMicrosoftGraphVerticalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -113666,7 +113666,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -113695,7 +113695,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUser", "ApiReferenceLink": null, @@ -113710,7 +113710,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -113725,7 +113725,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -113754,7 +113754,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUser", "ApiReferenceLink": null, @@ -113769,7 +113769,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -113784,7 +113784,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -113813,7 +113813,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -113828,7 +113828,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -113887,7 +113887,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageCreatedByUser", "ApiReferenceLink": null, @@ -113902,7 +113902,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -113917,7 +113917,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -113946,7 +113946,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageLastModifiedByUser", "ApiReferenceLink": null, @@ -113961,7 +113961,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -113976,7 +113976,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePageLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -114050,7 +114050,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePermission", "ApiReferenceLink": null, @@ -114065,7 +114065,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSitePermission", "ApiReferenceLink": null, @@ -114094,7 +114094,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBin", "ApiReferenceLink": null, @@ -114109,7 +114109,7 @@ "OutputType": "IMicrosoftGraphRecycleBin" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUser", "ApiReferenceLink": null, @@ -114124,7 +114124,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -114139,7 +114139,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -114168,7 +114168,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItem", "ApiReferenceLink": null, @@ -114183,7 +114183,7 @@ "OutputType": "IMicrosoftGraphRecycleBinItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItem", "ApiReferenceLink": null, @@ -114212,7 +114212,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUser", "ApiReferenceLink": null, @@ -114227,7 +114227,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -114242,7 +114242,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -114271,7 +114271,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUser", "ApiReferenceLink": null, @@ -114286,7 +114286,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -114301,7 +114301,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -114330,7 +114330,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUser", "ApiReferenceLink": null, @@ -114345,7 +114345,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -114360,7 +114360,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -114389,7 +114389,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStore", "ApiReferenceLink": null, @@ -114404,7 +114404,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -114419,7 +114419,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -114448,7 +114448,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -114463,7 +114463,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -114477,7 +114477,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -114494,7 +114494,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -114526,7 +114526,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -114543,7 +114543,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -114575,7 +114575,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -114592,7 +114592,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationSet", "ApiReferenceLink": null, @@ -114609,7 +114609,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationToTerm", "ApiReferenceLink": null, @@ -114626,7 +114626,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildSet", "ApiReferenceLink": null, @@ -114658,7 +114658,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -114673,7 +114673,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -114688,7 +114688,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -114717,7 +114717,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationFromTerm", "ApiReferenceLink": null, @@ -114732,7 +114732,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationSet", "ApiReferenceLink": null, @@ -114747,7 +114747,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationToTerm", "ApiReferenceLink": null, @@ -114762,7 +114762,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -114777,7 +114777,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -114791,7 +114791,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -114806,7 +114806,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -114835,7 +114835,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -114850,7 +114850,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -114879,7 +114879,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -114894,7 +114894,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationSet", "ApiReferenceLink": null, @@ -114909,7 +114909,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -114924,7 +114924,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildSet", "ApiReferenceLink": null, @@ -114954,7 +114954,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -114969,7 +114969,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -114998,7 +114998,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -115013,7 +115013,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationSet", "ApiReferenceLink": null, @@ -115028,7 +115028,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationToTerm", "ApiReferenceLink": null, @@ -115043,7 +115043,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermSet", "ApiReferenceLink": null, @@ -115058,7 +115058,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -115073,7 +115073,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -115087,7 +115087,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -115104,7 +115104,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -115136,7 +115136,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -115153,7 +115153,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -115185,7 +115185,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -115202,7 +115202,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationSet", "ApiReferenceLink": null, @@ -115219,7 +115219,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationToTerm", "ApiReferenceLink": null, @@ -115236,7 +115236,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildSet", "ApiReferenceLink": null, @@ -115268,7 +115268,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -115283,7 +115283,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -115298,7 +115298,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -115312,7 +115312,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -115329,7 +115329,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -115361,7 +115361,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -115378,7 +115378,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -115410,7 +115410,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -115427,7 +115427,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationSet", "ApiReferenceLink": null, @@ -115444,7 +115444,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationToTerm", "ApiReferenceLink": null, @@ -115461,7 +115461,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildSet", "ApiReferenceLink": null, @@ -115493,7 +115493,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -115508,7 +115508,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -115537,7 +115537,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationFromTerm", "ApiReferenceLink": null, @@ -115552,7 +115552,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationSet", "ApiReferenceLink": null, @@ -115567,7 +115567,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationToTerm", "ApiReferenceLink": null, @@ -115582,7 +115582,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -115597,7 +115597,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -115611,7 +115611,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -115626,7 +115626,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -115655,7 +115655,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -115670,7 +115670,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -115699,7 +115699,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -115714,7 +115714,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationSet", "ApiReferenceLink": null, @@ -115729,7 +115729,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -115744,7 +115744,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildSet", "ApiReferenceLink": null, @@ -115774,7 +115774,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -115789,7 +115789,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -115818,7 +115818,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -115833,7 +115833,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationSet", "ApiReferenceLink": null, @@ -115848,7 +115848,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationToTerm", "ApiReferenceLink": null, @@ -115863,7 +115863,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermSet", "ApiReferenceLink": null, @@ -115878,7 +115878,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -115893,7 +115893,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -115922,7 +115922,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelationFromTerm", "ApiReferenceLink": null, @@ -115937,7 +115937,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelationSet", "ApiReferenceLink": null, @@ -115952,7 +115952,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelationToTerm", "ApiReferenceLink": null, @@ -115967,7 +115967,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -115982,7 +115982,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -115996,7 +115996,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -116011,7 +116011,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -116040,7 +116040,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -116055,7 +116055,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -116084,7 +116084,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -116099,7 +116099,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationSet", "ApiReferenceLink": null, @@ -116114,7 +116114,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -116129,7 +116129,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildSet", "ApiReferenceLink": null, @@ -116159,7 +116159,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -116174,7 +116174,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -116203,7 +116203,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -116218,7 +116218,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationSet", "ApiReferenceLink": null, @@ -116233,7 +116233,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationToTerm", "ApiReferenceLink": null, @@ -116248,7 +116248,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermSet", "ApiReferenceLink": null, @@ -116263,7 +116263,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSubSite", "ApiReferenceLink": null, @@ -116278,7 +116278,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupSubSite", "ApiReferenceLink": null, @@ -116307,7 +116307,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeam", "ApiReferenceLink": null, @@ -116322,7 +116322,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannel", "ApiReferenceLink": null, @@ -116337,7 +116337,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannel", "ApiReferenceLink": null, @@ -116366,7 +116366,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelFileFolder", "ApiReferenceLink": null, @@ -116411,7 +116411,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMember", "ApiReferenceLink": null, @@ -116426,7 +116426,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMember", "ApiReferenceLink": null, @@ -116455,7 +116455,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -116470,7 +116470,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -116499,7 +116499,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -116516,7 +116516,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -116545,7 +116545,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -116560,7 +116560,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -116589,7 +116589,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -116606,7 +116606,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -116635,7 +116635,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -116652,7 +116652,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -116666,7 +116666,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -116681,7 +116681,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -116725,7 +116725,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelTab", "ApiReferenceLink": null, @@ -116740,7 +116740,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelTab", "ApiReferenceLink": null, @@ -116769,7 +116769,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelTabTeamApp", "ApiReferenceLink": null, @@ -116784,7 +116784,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamGroup", "ApiReferenceLink": null, @@ -116799,7 +116799,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -116828,7 +116828,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamIncomingChannel", "ApiReferenceLink": null, @@ -116843,7 +116843,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamIncomingChannel", "ApiReferenceLink": null, @@ -116872,7 +116872,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledApp", "ApiReferenceLink": null, @@ -116887,7 +116887,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledApp", "ApiReferenceLink": null, @@ -116916,7 +116916,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledAppTeamApp", "ApiReferenceLink": null, @@ -116931,7 +116931,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -116946,7 +116946,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamMember", "ApiReferenceLink": null, @@ -116961,7 +116961,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamMember", "ApiReferenceLink": null, @@ -116990,7 +116990,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamOperation", "ApiReferenceLink": null, @@ -117005,7 +117005,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamOperation", "ApiReferenceLink": null, @@ -117034,7 +117034,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamOwner", "ApiReferenceLink": null, @@ -117049,7 +117049,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamOwner", "ApiReferenceLink": null, @@ -117078,7 +117078,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamOwnerMailboxSetting", "ApiReferenceLink": null, @@ -117093,7 +117093,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamOwnerServiceProvisioningError", "ApiReferenceLink": null, @@ -117122,7 +117122,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -117137,7 +117137,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -117166,7 +117166,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPhoto", "ApiReferenceLink": null, @@ -117196,7 +117196,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannel", "ApiReferenceLink": null, @@ -117211,7 +117211,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolder", "ApiReferenceLink": null, @@ -117256,7 +117256,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -117271,7 +117271,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -117300,7 +117300,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -117315,7 +117315,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -117344,7 +117344,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -117361,7 +117361,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -117390,7 +117390,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -117405,7 +117405,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -117434,7 +117434,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -117451,7 +117451,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -117480,7 +117480,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -117497,7 +117497,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -117511,7 +117511,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -117526,7 +117526,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -117570,7 +117570,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -117585,7 +117585,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -117614,7 +117614,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelTabTeamApp", "ApiReferenceLink": null, @@ -117629,7 +117629,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamSchedule", "ApiReferenceLink": null, @@ -117644,7 +117644,7 @@ "OutputType": "IMicrosoftGraphSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleDayNote", "ApiReferenceLink": null, @@ -117659,7 +117659,7 @@ "OutputType": "IMicrosoftGraphDayNote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleDayNote", "ApiReferenceLink": null, @@ -117688,7 +117688,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -117703,7 +117703,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -117732,7 +117732,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -117747,7 +117747,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -117761,7 +117761,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -117776,7 +117776,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -117908,7 +117908,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -117923,7 +117923,7 @@ "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -117952,7 +117952,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -117967,7 +117967,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -117996,7 +117996,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -118011,7 +118011,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -118172,7 +118172,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamTag", "ApiReferenceLink": null, @@ -118187,7 +118187,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamTag", "ApiReferenceLink": null, @@ -118216,7 +118216,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamTagMember", "ApiReferenceLink": null, @@ -118231,7 +118231,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamTagMember", "ApiReferenceLink": null, @@ -118260,7 +118260,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamTemplate", "ApiReferenceLink": null, @@ -118275,7 +118275,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTeamTemplateDefinition", "ApiReferenceLink": null, @@ -118433,7 +118433,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPost", "ApiReferenceLink": null, @@ -118483,7 +118483,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPost", "ApiReferenceLink": null, @@ -118530,7 +118530,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostAttachment", "ApiReferenceLink": null, @@ -118545,7 +118545,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostAttachment", "ApiReferenceLink": null, @@ -118688,7 +118688,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostExtension", "ApiReferenceLink": null, @@ -118703,7 +118703,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostExtension", "ApiReferenceLink": null, @@ -118732,7 +118732,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -118747,7 +118747,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -118776,7 +118776,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -118791,7 +118791,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -118820,7 +118820,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToMention", "ApiReferenceLink": null, @@ -118835,7 +118835,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToMention", "ApiReferenceLink": null, @@ -118864,7 +118864,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostMention", "ApiReferenceLink": null, @@ -118879,7 +118879,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupThreadPostMention", "ApiReferenceLink": null, @@ -118908,7 +118908,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMember", "ApiReferenceLink": null, @@ -118923,7 +118923,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMember", "ApiReferenceLink": null, @@ -118978,7 +118978,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsApplication", "ApiReferenceLink": null, @@ -118993,7 +118993,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsApplication", "ApiReferenceLink": null, @@ -119007,7 +119007,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsDevice", "ApiReferenceLink": null, @@ -119022,7 +119022,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsDevice", "ApiReferenceLink": null, @@ -119036,7 +119036,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsGroup", "ApiReferenceLink": null, @@ -119051,7 +119051,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsGroup", "ApiReferenceLink": null, @@ -119065,7 +119065,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsOrgContact", "ApiReferenceLink": null, @@ -119080,7 +119080,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsOrgContact", "ApiReferenceLink": null, @@ -119094,7 +119094,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -119109,7 +119109,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -119123,7 +119123,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsUser", "ApiReferenceLink": null, @@ -119138,7 +119138,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsUser", "ApiReferenceLink": null, @@ -119298,7 +119298,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOf", "ApiReferenceLink": null, @@ -119313,7 +119313,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOf", "ApiReferenceLink": null, @@ -119360,7 +119360,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -119375,7 +119375,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -119389,7 +119389,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -119404,7 +119404,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -119511,7 +119511,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityApiConnector", "ApiReferenceLink": null, @@ -119526,7 +119526,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityApiConnector", "ApiReferenceLink": null, @@ -119554,7 +119554,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlow", "ApiReferenceLink": null, @@ -119586,7 +119586,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventsFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlow", "ApiReferenceLink": null, @@ -119617,7 +119617,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventsFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow", "ApiReferenceLink": null, @@ -119632,7 +119632,7 @@ "OutputType": "IMicrosoftGraphExternalUsersSelfServiceSignUpEventsFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow", "ApiReferenceLink": null, @@ -119663,7 +119663,7 @@ "OutputType": "IMicrosoftGraphExternalUsersSelfServiceSignUpEventsFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition", "ApiReferenceLink": null, @@ -119678,7 +119678,7 @@ "OutputType": "IMicrosoftGraphAuthenticationConditionsApplications" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -119693,7 +119693,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -119722,7 +119722,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection", "ApiReferenceLink": null, @@ -119737,7 +119737,7 @@ "OutputType": "IMicrosoftGraphOnAttributeCollectionHandler" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart", "ApiReferenceLink": null, @@ -119752,7 +119752,7 @@ "OutputType": "IMicrosoftGraphOnAuthenticationMethodLoadStartHandler" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute", "ApiReferenceLink": null, @@ -119781,7 +119781,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider", "ApiReferenceLink": null, @@ -119838,7 +119838,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowCondition", "ApiReferenceLink": null, @@ -119915,7 +119915,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -119930,7 +119930,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplication", "ApiReferenceLink": null, @@ -120023,7 +120023,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -120055,7 +120055,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -120117,7 +120117,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlow", "ApiReferenceLink": null, @@ -120149,7 +120149,7 @@ "OutputType": "IMicrosoftGraphB2CIdentityUserFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlow", "ApiReferenceLink": null, @@ -120211,7 +120211,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProvider", "ApiReferenceLink": null, @@ -120226,7 +120226,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProvider", "ApiReferenceLink": null, @@ -120272,7 +120272,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguage", "ApiReferenceLink": null, @@ -120304,7 +120304,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguage", "ApiReferenceLink": null, @@ -120367,7 +120367,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -120399,7 +120399,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -120494,7 +120494,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -120526,7 +120526,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -120621,7 +120621,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -120653,7 +120653,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -120748,7 +120748,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentUserAttribute", "ApiReferenceLink": null, @@ -120763,7 +120763,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -120795,7 +120795,7 @@ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -120826,7 +120826,7 @@ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowApiConnectorConfiguration", "ApiReferenceLink": null, @@ -120872,7 +120872,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProvider", "ApiReferenceLink": null, @@ -120887,7 +120887,7 @@ "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProvider", "ApiReferenceLink": null, @@ -120933,7 +120933,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -120965,7 +120965,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -121028,7 +121028,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -121060,7 +121060,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -121155,7 +121155,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -121187,7 +121187,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -121282,7 +121282,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPostAttributeCollection", "ApiReferenceLink": null, @@ -121312,7 +121312,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPostFederationSignup", "ApiReferenceLink": null, @@ -121342,7 +121342,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPreTokenIssuance", "ApiReferenceLink": null, @@ -121357,7 +121357,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -121389,7 +121389,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -121484,7 +121484,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentUserAttribute", "ApiReferenceLink": null, @@ -121499,7 +121499,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -121514,7 +121514,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -121576,7 +121576,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrength", "ApiReferenceLink": null, @@ -121590,7 +121590,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", "ApiReferenceLink": null, @@ -121605,7 +121605,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", "ApiReferenceLink": null, @@ -121633,7 +121633,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -121648,7 +121648,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -121662,7 +121662,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -121677,7 +121677,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -121720,7 +121720,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -121735,7 +121735,7 @@ "OutputType": "IMicrosoftGraphNamedLocation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -121763,7 +121763,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -121778,7 +121778,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -121806,7 +121806,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessTemplate", "ApiReferenceLink": null, @@ -121821,7 +121821,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessTemplate", "ApiReferenceLink": null, @@ -121849,7 +121849,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityContinuouAccessEvaluationPolicy", "ApiReferenceLink": null, @@ -121863,7 +121863,7 @@ "OutputType": "IMicrosoftGraphContinuousAccessEvaluationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -121895,7 +121895,7 @@ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -121957,7 +121957,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecision", "ApiReferenceLink": null, @@ -121972,7 +121972,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecision", "ApiReferenceLink": null, @@ -122000,7 +122000,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsight", "ApiReferenceLink": null, @@ -122015,7 +122015,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsight", "ApiReferenceLink": null, @@ -122044,7 +122044,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstance", "ApiReferenceLink": null, @@ -122059,7 +122059,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -122074,7 +122074,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -122103,7 +122103,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", "ApiReferenceLink": null, @@ -122118,7 +122118,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", "ApiReferenceLink": null, @@ -122147,7 +122147,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -122162,7 +122162,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -122191,7 +122191,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDefinition", "ApiReferenceLink": null, @@ -122206,7 +122206,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", "ApiReferenceLink": null, @@ -122221,7 +122221,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", "ApiReferenceLink": null, @@ -122250,7 +122250,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", "ApiReferenceLink": null, @@ -122265,7 +122265,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", "ApiReferenceLink": null, @@ -122294,7 +122294,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -122309,7 +122309,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -122338,7 +122338,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -122370,7 +122370,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -122432,7 +122432,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -122464,7 +122464,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -122495,7 +122495,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -122510,7 +122510,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -122605,7 +122605,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -122637,7 +122637,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -122700,7 +122700,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -122715,7 +122715,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -122744,7 +122744,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInstance", "ApiReferenceLink": null, @@ -122759,7 +122759,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDefinition", "ApiReferenceLink": null, @@ -122774,7 +122774,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -122806,7 +122806,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -122869,7 +122869,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -122901,7 +122901,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -122964,7 +122964,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -122979,7 +122979,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -122993,7 +122993,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInstance", "ApiReferenceLink": null, @@ -123008,7 +123008,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -123023,7 +123023,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -123051,7 +123051,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -123066,7 +123066,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -123095,7 +123095,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewPolicy", "ApiReferenceLink": null, @@ -123126,7 +123126,7 @@ "OutputType": "IMicrosoftGraphAccessReviewPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -123158,7 +123158,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -123220,7 +123220,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -123252,7 +123252,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -123283,7 +123283,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApproval", "ApiReferenceLink": null, @@ -123298,7 +123298,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", "ApiReferenceLink": null, @@ -123313,7 +123313,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", "ApiReferenceLink": null, @@ -123374,7 +123374,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -123406,7 +123406,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -123468,7 +123468,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedBy", "ApiReferenceLink": null, @@ -123483,7 +123483,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -123498,7 +123498,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError", "ApiReferenceLink": null, @@ -123527,7 +123527,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -123559,7 +123559,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -123621,7 +123621,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy", "ApiReferenceLink": null, @@ -123636,7 +123636,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -123651,7 +123651,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError", "ApiReferenceLink": null, @@ -123680,7 +123680,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy", "ApiReferenceLink": null, @@ -123695,7 +123695,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -123710,7 +123710,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError", "ApiReferenceLink": null, @@ -123739,7 +123739,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItem", "ApiReferenceLink": null, @@ -123753,7 +123753,7 @@ "OutputType": "IMicrosoftGraphDeletedItemContainer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": null, @@ -123785,7 +123785,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": null, @@ -123847,7 +123847,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy", "ApiReferenceLink": null, @@ -123862,7 +123862,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope", "ApiReferenceLink": null, @@ -123877,7 +123877,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope", "ApiReferenceLink": null, @@ -123891,7 +123891,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy", "ApiReferenceLink": null, @@ -123906,7 +123906,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun", "ApiReferenceLink": null, @@ -123921,7 +123921,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun", "ApiReferenceLink": null, @@ -123935,7 +123935,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -123950,7 +123950,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -123964,7 +123964,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport", "ApiReferenceLink": null, @@ -123979,7 +123979,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport", "ApiReferenceLink": null, @@ -123993,7 +123993,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -124008,7 +124008,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -124022,7 +124022,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion", "ApiReferenceLink": null, @@ -124037,7 +124037,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion", "ApiReferenceLink": null, @@ -124051,7 +124051,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScope", "ApiReferenceLink": null, @@ -124066,7 +124066,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScope", "ApiReferenceLink": null, @@ -124129,7 +124129,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedBy", "ApiReferenceLink": null, @@ -124144,7 +124144,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -124159,7 +124159,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError", "ApiReferenceLink": null, @@ -124188,7 +124188,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun", "ApiReferenceLink": null, @@ -124220,7 +124220,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun", "ApiReferenceLink": null, @@ -124283,7 +124283,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", "ApiReferenceLink": null, @@ -124298,7 +124298,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", "ApiReferenceLink": null, @@ -124361,7 +124361,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -124376,7 +124376,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -124391,7 +124391,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -124420,7 +124420,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask", "ApiReferenceLink": null, @@ -124435,7 +124435,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", "ApiReferenceLink": null, @@ -124467,7 +124467,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", "ApiReferenceLink": null, @@ -124530,7 +124530,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject", "ApiReferenceLink": null, @@ -124545,7 +124545,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -124560,7 +124560,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -124589,7 +124589,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", "ApiReferenceLink": null, @@ -124604,7 +124604,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", "ApiReferenceLink": null, @@ -124635,7 +124635,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowSetting", "ApiReferenceLink": null, @@ -124666,7 +124666,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -124681,7 +124681,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -124744,7 +124744,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition", "ApiReferenceLink": null, @@ -124776,7 +124776,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition", "ApiReferenceLink": null, @@ -124838,7 +124838,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult", "ApiReferenceLink": null, @@ -124853,7 +124853,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult", "ApiReferenceLink": null, @@ -124916,7 +124916,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -124931,7 +124931,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -124946,7 +124946,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -124975,7 +124975,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask", "ApiReferenceLink": null, @@ -124990,7 +124990,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReport", "ApiReferenceLink": null, @@ -125005,7 +125005,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReport", "ApiReferenceLink": null, @@ -125068,7 +125068,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTask", "ApiReferenceLink": null, @@ -125083,7 +125083,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition", "ApiReferenceLink": null, @@ -125098,7 +125098,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", "ApiReferenceLink": null, @@ -125113,7 +125113,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", "ApiReferenceLink": null, @@ -125176,7 +125176,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -125191,7 +125191,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -125206,7 +125206,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -125235,7 +125235,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask", "ApiReferenceLink": null, @@ -125250,7 +125250,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate", "ApiReferenceLink": null, @@ -125282,7 +125282,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate", "ApiReferenceLink": null, @@ -125344,7 +125344,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTask", "ApiReferenceLink": null, @@ -125359,7 +125359,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTask", "ApiReferenceLink": null, @@ -125388,7 +125388,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", "ApiReferenceLink": null, @@ -125403,7 +125403,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", "ApiReferenceLink": null, @@ -125432,7 +125432,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -125447,7 +125447,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -125462,7 +125462,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -125491,7 +125491,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask", "ApiReferenceLink": null, @@ -125506,7 +125506,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -125521,7 +125521,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -125584,7 +125584,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject", "ApiReferenceLink": null, @@ -125599,7 +125599,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -125614,7 +125614,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -125643,7 +125643,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", "ApiReferenceLink": null, @@ -125658,7 +125658,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", "ApiReferenceLink": null, @@ -125689,7 +125689,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion", "ApiReferenceLink": null, @@ -125721,7 +125721,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion", "ApiReferenceLink": null, @@ -125784,7 +125784,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedBy", "ApiReferenceLink": null, @@ -125799,7 +125799,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -125814,7 +125814,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError", "ApiReferenceLink": null, @@ -125843,7 +125843,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy", "ApiReferenceLink": null, @@ -125858,7 +125858,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -125873,7 +125873,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError", "ApiReferenceLink": null, @@ -125902,7 +125902,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -125934,7 +125934,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -125997,7 +125997,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", "ApiReferenceLink": null, @@ -126012,7 +126012,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", "ApiReferenceLink": null, @@ -126041,7 +126041,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -126056,7 +126056,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -126071,7 +126071,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -126100,7 +126100,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask", "ApiReferenceLink": null, @@ -126115,7 +126115,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalytic", "ApiReferenceLink": null, @@ -126129,7 +126129,7 @@ "OutputType": "IMicrosoftGraphPermissionsAnalyticsAggregation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAw", "ApiReferenceLink": null, @@ -126143,7 +126143,7 @@ "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFinding", "ApiReferenceLink": null, @@ -126158,7 +126158,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFinding", "ApiReferenceLink": null, @@ -126186,7 +126186,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -126201,7 +126201,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -126215,7 +126215,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistributionAuthorizationSystem", "ApiReferenceLink": null, @@ -126244,7 +126244,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzure", "ApiReferenceLink": null, @@ -126258,7 +126258,7 @@ "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", "ApiReferenceLink": null, @@ -126273,7 +126273,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", "ApiReferenceLink": null, @@ -126301,7 +126301,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -126316,7 +126316,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -126330,7 +126330,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistributionAuthorizationSystem", "ApiReferenceLink": null, @@ -126359,7 +126359,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcp", "ApiReferenceLink": null, @@ -126373,7 +126373,7 @@ "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", "ApiReferenceLink": null, @@ -126388,7 +126388,7 @@ "OutputType": "IMicrosoftGraphFinding" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", "ApiReferenceLink": null, @@ -126416,7 +126416,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -126431,7 +126431,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", "ApiReferenceLink": null, @@ -126445,7 +126445,7 @@ "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistributionAuthorizationSystem", "ApiReferenceLink": null, @@ -126474,7 +126474,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagement", "ApiReferenceLink": null, @@ -126488,7 +126488,7 @@ "OutputType": "IMicrosoftGraphPermissionsManagement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", "ApiReferenceLink": null, @@ -126503,7 +126503,7 @@ "OutputType": "IMicrosoftGraphPermissionsRequestChange" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", "ApiReferenceLink": null, @@ -126531,7 +126531,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", "ApiReferenceLink": null, @@ -126546,7 +126546,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", "ApiReferenceLink": null, @@ -126574,7 +126574,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", "ApiReferenceLink": null, @@ -126589,7 +126589,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", "ApiReferenceLink": null, @@ -126618,7 +126618,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionRequest", "ApiReferenceLink": null, @@ -126632,7 +126632,7 @@ "OutputType": "IMicrosoftGraphScheduledPermissionsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccess", "ApiReferenceLink": null, @@ -126646,7 +126646,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroup", "ApiReferenceLink": null, @@ -126660,7 +126660,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -126675,7 +126675,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -126703,7 +126703,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", "ApiReferenceLink": null, @@ -126718,7 +126718,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", "ApiReferenceLink": null, @@ -126747,7 +126747,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -126779,7 +126779,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -126810,7 +126810,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing", "ApiReferenceLink": null, @@ -126856,7 +126856,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup", "ApiReferenceLink": null, @@ -126871,7 +126871,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -126900,7 +126900,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -126932,7 +126932,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -126963,7 +126963,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing", "ApiReferenceLink": null, @@ -127009,7 +127009,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup", "ApiReferenceLink": null, @@ -127024,7 +127024,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -127053,7 +127053,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -127068,7 +127068,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal", "ApiReferenceLink": null, @@ -127083,7 +127083,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -127115,7 +127115,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -127146,7 +127146,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing", "ApiReferenceLink": null, @@ -127192,7 +127192,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup", "ApiReferenceLink": null, @@ -127207,7 +127207,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -127236,7 +127236,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -127251,7 +127251,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -127266,7 +127266,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -127298,7 +127298,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -127360,7 +127360,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup", "ApiReferenceLink": null, @@ -127375,7 +127375,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -127404,7 +127404,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -127436,7 +127436,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -127498,7 +127498,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup", "ApiReferenceLink": null, @@ -127513,7 +127513,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -127542,7 +127542,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -127557,7 +127557,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal", "ApiReferenceLink": null, @@ -127572,7 +127572,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -127604,7 +127604,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -127666,7 +127666,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup", "ApiReferenceLink": null, @@ -127681,7 +127681,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -127710,7 +127710,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -127725,7 +127725,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -127740,7 +127740,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlert", "ApiReferenceLink": null, @@ -127772,7 +127772,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlert", "ApiReferenceLink": null, @@ -127803,7 +127803,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", "ApiReferenceLink": null, @@ -127837,7 +127837,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", "ApiReferenceLink": null, @@ -127868,7 +127868,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfigurationAlertDefinition", "ApiReferenceLink": null, @@ -127945,7 +127945,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinition", "ApiReferenceLink": null, @@ -127979,7 +127979,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinition", "ApiReferenceLink": null, @@ -128041,7 +128041,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncident", "ApiReferenceLink": null, @@ -128073,7 +128073,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncident", "ApiReferenceLink": null, @@ -128136,7 +128136,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperation", "ApiReferenceLink": null, @@ -128168,7 +128168,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperation", "ApiReferenceLink": null, @@ -128196,7 +128196,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -128211,7 +128211,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -128225,7 +128225,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -128242,7 +128242,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -128287,7 +128287,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -128302,7 +128302,7 @@ "OutputType": "IMicrosoftGraphAgreementFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -128331,7 +128331,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -128346,7 +128346,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -128375,7 +128375,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -128390,7 +128390,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -128419,7 +128419,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -128434,7 +128434,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -128463,7 +128463,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityProvider", "ApiReferenceLink": null, @@ -128495,7 +128495,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityProvider", "ApiReferenceLink": null, @@ -128557,7 +128557,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityUserFlow", "ApiReferenceLink": null, @@ -128589,7 +128589,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityUserFlow", "ApiReferenceLink": null, @@ -128620,7 +128620,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -128652,7 +128652,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -128745,7 +128745,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtection", "ApiReferenceLink": null, @@ -128759,7 +128759,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionBitlocker", "ApiReferenceLink": null, @@ -128773,7 +128773,7 @@ "OutputType": "IMicrosoftGraphBitlocker" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey", "ApiReferenceLink": null, @@ -128805,7 +128805,7 @@ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey", "ApiReferenceLink": null, @@ -128867,7 +128867,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -128882,7 +128882,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -128910,7 +128910,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionPolicy", "ApiReferenceLink": null, @@ -128924,7 +128924,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -128956,7 +128956,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -129047,7 +129047,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionSensitivityPolicySetting", "ApiReferenceLink": null, @@ -129061,7 +129061,7 @@ "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -129093,7 +129093,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -129155,7 +129155,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -129170,7 +129170,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -129199,7 +129199,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInvitation", "ApiReferenceLink": null, @@ -129214,7 +129214,7 @@ "OutputType": "IMicrosoftGraphInvitation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInvitation", "ApiReferenceLink": null, @@ -129242,7 +129242,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserMailboxSetting", "ApiReferenceLink": null, @@ -129257,7 +129257,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserServiceProvisioningError", "ApiReferenceLink": null, @@ -129286,7 +129286,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserSponsor", "ApiReferenceLink": null, @@ -129301,7 +129301,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserSponsor", "ApiReferenceLink": null, @@ -129330,7 +129330,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-get?view=graph-rest-beta", @@ -129370,7 +129370,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-list?view=graph-rest-beta", @@ -129448,7 +129448,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOauth2PermissionGrantDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delta?view=graph-rest-beta", @@ -129487,7 +129487,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfile", "ApiReferenceLink": null, @@ -129502,7 +129502,7 @@ "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfile", "ApiReferenceLink": null, @@ -129516,7 +129516,7 @@ "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgent", "ApiReferenceLink": null, @@ -129531,7 +129531,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgent", "ApiReferenceLink": null, @@ -129560,7 +129560,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroup", "ApiReferenceLink": null, @@ -129575,7 +129575,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroup", "ApiReferenceLink": null, @@ -129591,7 +129591,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgent", "ApiReferenceLink": null, @@ -129606,7 +129606,7 @@ "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgent", "ApiReferenceLink": null, @@ -129669,7 +129669,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", "ApiReferenceLink": null, @@ -129684,7 +129684,7 @@ "OutputType": "IMicrosoftGraphPublishedResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", "ApiReferenceLink": null, @@ -129698,7 +129698,7 @@ "OutputType": "IMicrosoftGraphPublishedResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "ApiReferenceLink": null, @@ -129756,7 +129756,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnector", "ApiReferenceLink": null, @@ -129771,7 +129771,7 @@ "OutputType": "IMicrosoftGraphConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnector", "ApiReferenceLink": null, @@ -129800,7 +129800,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroup", "ApiReferenceLink": null, @@ -129815,7 +129815,7 @@ "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroup", "ApiReferenceLink": null, @@ -129829,7 +129829,7 @@ "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplication", "ApiReferenceLink": null, @@ -129844,7 +129844,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplication", "ApiReferenceLink": null, @@ -129858,7 +129858,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationByAppId", "ApiReferenceLink": null, @@ -129873,7 +129873,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationByUniqueName", "ApiReferenceLink": null, @@ -129933,7 +129933,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMember", "ApiReferenceLink": null, @@ -129976,7 +129976,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOf", "ApiReferenceLink": null, @@ -130019,7 +130019,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResource", "ApiReferenceLink": null, @@ -130034,7 +130034,7 @@ "OutputType": "IMicrosoftGraphPublishedResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResource", "ApiReferenceLink": null, @@ -130048,7 +130048,7 @@ "OutputType": "IMicrosoftGraphPublishedResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup", "ApiReferenceLink": null, @@ -130106,7 +130106,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganization", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-get?view=graph-rest-beta", @@ -130154,7 +130154,7 @@ "OutputType": "IMicrosoftGraphOrganization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganization", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-beta", @@ -130241,7 +130241,7 @@ "OutputType": "IMicrosoftGraphOrganization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBranding", "ApiReferenceLink": null, @@ -130372,7 +130372,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -130428,7 +130428,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -130808,7 +130808,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration", "ApiReferenceLink": null, @@ -130840,7 +130840,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration", "ApiReferenceLink": null, @@ -130990,7 +130990,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationExtension", "ApiReferenceLink": null, @@ -131005,7 +131005,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationExtension", "ApiReferenceLink": null, @@ -131068,7 +131068,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationPartnerInformation", "ApiReferenceLink": null, @@ -131083,7 +131083,7 @@ "OutputType": "IMicrosoftGraphPartnerInformation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationSetting", "ApiReferenceLink": null, @@ -131115,7 +131115,7 @@ "OutputType": "IMicrosoftGraphOrganizationSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationSettingContactInsight", "ApiReferenceLink": null, @@ -131147,7 +131147,7 @@ "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationSettingItemInsight", "ApiReferenceLink": null, @@ -131179,7 +131179,7 @@ "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationSettingMicrosoftApplicationDataAccess", "ApiReferenceLink": null, @@ -131211,7 +131211,7 @@ "OutputType": "IMicrosoftGraphMicrosoftApplicationDataAccessSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaOrganizationSettingPersonInsight", "ApiReferenceLink": null, @@ -131258,7 +131258,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoom", "ApiReferenceLink": null, @@ -131273,7 +131273,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoom", "ApiReferenceLink": null, @@ -131287,7 +131287,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomList", "ApiReferenceLink": null, @@ -131302,7 +131302,7 @@ "OutputType": "IMicrosoftGraphRoomList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomList", "ApiReferenceLink": null, @@ -131316,7 +131316,7 @@ "OutputType": "IMicrosoftGraphRoomList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -131331,7 +131331,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -131360,7 +131360,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListWorkspace", "ApiReferenceLink": null, @@ -131375,7 +131375,7 @@ "OutputType": "IMicrosoftGraphWorkspace" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListWorkspace", "ApiReferenceLink": null, @@ -131446,7 +131446,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlanner", "ApiReferenceLink": null, @@ -131460,7 +131460,7 @@ "OutputType": "IMicrosoftGraphPlanner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerBucket", "ApiReferenceLink": null, @@ -131524,7 +131524,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerBucket", "ApiReferenceLink": null, @@ -131650,7 +131650,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerBucketDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-delta?view=graph-rest-beta", @@ -131713,7 +131713,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerBucketTask", "ApiReferenceLink": null, @@ -131776,7 +131776,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerPlan", "ApiReferenceLink": null, @@ -131840,7 +131840,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerPlan", "ApiReferenceLink": null, @@ -131903,7 +131903,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerPlanBucket", "ApiReferenceLink": null, @@ -132029,7 +132029,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerPlanDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-delta?view=graph-rest-beta", @@ -132092,7 +132092,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerPlanDetail", "ApiReferenceLink": null, @@ -132156,7 +132156,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerPlanTask", "ApiReferenceLink": null, @@ -132219,7 +132219,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerRoster", "ApiReferenceLink": null, @@ -132267,7 +132267,7 @@ "OutputType": "IMicrosoftGraphPlannerRoster" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerRoster", "ApiReferenceLink": null, @@ -132295,7 +132295,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerRosterMember", "ApiReferenceLink": null, @@ -132343,7 +132343,7 @@ "OutputType": "IMicrosoftGraphPlannerRosterMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerRosterMember", "ApiReferenceLink": null, @@ -132438,7 +132438,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerRosterPlan", "ApiReferenceLink": null, @@ -132453,7 +132453,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerRosterPlan", "ApiReferenceLink": null, @@ -132548,7 +132548,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerTask", "ApiReferenceLink": null, @@ -132612,7 +132612,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerTask", "ApiReferenceLink": null, @@ -132675,7 +132675,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerTaskAssignedToTaskBoardFormat", "ApiReferenceLink": null, @@ -132739,7 +132739,7 @@ "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerTaskBucketTaskBoardFormat", "ApiReferenceLink": null, @@ -132866,7 +132866,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerTaskDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", @@ -132897,7 +132897,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerTaskDetail", "ApiReferenceLink": null, @@ -132961,7 +132961,7 @@ "OutputType": "IMicrosoftGraphPlannerTaskDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPlannerTaskProgressTaskBoardFormat", "ApiReferenceLink": null, @@ -133025,7 +133025,7 @@ "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAccessReviewPolicy", "ApiReferenceLink": null, @@ -133056,7 +133056,7 @@ "OutputType": "IMicrosoftGraphAccessReviewPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -133096,7 +133096,7 @@ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -133135,7 +133135,7 @@ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyTo", "ApiReferenceLink": null, @@ -133150,7 +133150,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyTo", "ApiReferenceLink": null, @@ -133218,7 +133218,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAdminConsentRequestPolicy", "ApiReferenceLink": null, @@ -133265,7 +133265,7 @@ "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -133305,7 +133305,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -133344,7 +133344,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAppManagementPolicyApplyTo", "ApiReferenceLink": null, @@ -133359,7 +133359,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAppManagementPolicyApplyTo", "ApiReferenceLink": null, @@ -133493,7 +133493,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationFlowPolicy", "ApiReferenceLink": null, @@ -133524,7 +133524,7 @@ "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationMethodPolicy", "ApiReferenceLink": null, @@ -133538,7 +133538,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -133553,7 +133553,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -133581,7 +133581,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -133621,7 +133621,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -133660,7 +133660,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -133675,7 +133675,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -133743,7 +133743,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicy", "ApiReferenceLink": null, @@ -133758,7 +133758,7 @@ "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicy", "ApiReferenceLink": null, @@ -133820,7 +133820,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", "ApiReferenceLink": null, @@ -133835,7 +133835,7 @@ "OutputType": "IMicrosoftGraphDefaultUserRoleOverride" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", "ApiReferenceLink": null, @@ -133864,7 +133864,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyB2CAuthenticationMethodPolicy", "ApiReferenceLink": null, @@ -133878,7 +133878,7 @@ "OutputType": "IMicrosoftGraphB2CAuthenticationMethodsPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -133918,7 +133918,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -133957,7 +133957,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyTo", "ApiReferenceLink": null, @@ -133972,7 +133972,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyTo", "ApiReferenceLink": null, @@ -134136,7 +134136,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicy", "ApiReferenceLink": null, @@ -134167,7 +134167,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyDefault", "ApiReferenceLink": null, @@ -134198,7 +134198,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -134230,7 +134230,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -134292,7 +134292,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", "ApiReferenceLink": null, @@ -134324,7 +134324,7 @@ "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplate", "ApiReferenceLink": null, @@ -134355,7 +134355,7 @@ "OutputType": "IMicrosoftGraphPolicyTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", "ApiReferenceLink": null, @@ -134369,7 +134369,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", "ApiReferenceLink": null, @@ -134383,7 +134383,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyDefaultAppManagementPolicy", "ApiReferenceLink": null, @@ -134461,7 +134461,7 @@ "OutputType": "IMicrosoftGraphDeviceRegistrationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyDirectoryRoleAccessReviewPolicy", "ApiReferenceLink": null, @@ -134475,7 +134475,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleAccessReviewPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyExternalIdentityPolicy", "ApiReferenceLink": null, @@ -134506,7 +134506,7 @@ "OutputType": "IMicrosoftGraphExternalIdentitiesPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -134521,7 +134521,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -134535,7 +134535,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyTo", "ApiReferenceLink": null, @@ -134592,7 +134592,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyFederatedTokenValidationPolicy", "ApiReferenceLink": null, @@ -134606,7 +134606,7 @@ "OutputType": "IMicrosoftGraphFederatedTokenValidationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -134646,7 +134646,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -134685,7 +134685,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyTo", "ApiReferenceLink": null, @@ -134700,7 +134700,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyTo", "ApiReferenceLink": null, @@ -134850,7 +134850,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyIdentitySecurityDefaultEnforcementPolicy", "ApiReferenceLink": null, @@ -134864,7 +134864,7 @@ "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicy", "ApiReferenceLink": null, @@ -134896,7 +134896,7 @@ "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicy", "ApiReferenceLink": null, @@ -134958,7 +134958,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroup", "ApiReferenceLink": null, @@ -135052,7 +135052,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -135081,7 +135081,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy", "ApiReferenceLink": null, @@ -135113,7 +135113,7 @@ "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy", "ApiReferenceLink": null, @@ -135175,7 +135175,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroup", "ApiReferenceLink": null, @@ -135269,7 +135269,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -135298,7 +135298,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -135330,7 +135330,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -135392,7 +135392,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -135407,7 +135407,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -135470,7 +135470,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -135485,7 +135485,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -135548,7 +135548,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -135604,7 +135604,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -135659,7 +135659,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -135715,7 +135715,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -135825,7 +135825,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignmentPolicy", "ApiReferenceLink": null, @@ -135895,7 +135895,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -135910,7 +135910,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -136021,7 +136021,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -136077,7 +136077,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -136188,7 +136188,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicy", "ApiReferenceLink": null, @@ -136203,7 +136203,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicy", "ApiReferenceLink": null, @@ -136231,7 +136231,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExclude", "ApiReferenceLink": null, @@ -136246,7 +136246,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExclude", "ApiReferenceLink": null, @@ -136275,7 +136275,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyInclude", "ApiReferenceLink": null, @@ -136290,7 +136290,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyInclude", "ApiReferenceLink": null, @@ -136319,7 +136319,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -136359,7 +136359,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -136398,7 +136398,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyTo", "ApiReferenceLink": null, @@ -136413,7 +136413,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyTo", "ApiReferenceLink": null, @@ -136563,7 +136563,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -136603,7 +136603,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -136642,7 +136642,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyTo", "ApiReferenceLink": null, @@ -136657,7 +136657,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyTo", "ApiReferenceLink": null, @@ -136807,7 +136807,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrint", "ApiReferenceLink": null, @@ -136821,7 +136821,7 @@ "OutputType": "IMicrosoftGraphPrint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintConnector", "ApiReferenceLink": null, @@ -136853,7 +136853,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintConnector", "ApiReferenceLink": null, @@ -136915,7 +136915,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintOperation", "ApiReferenceLink": null, @@ -136955,7 +136955,7 @@ "OutputType": "IMicrosoftGraphPrintOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintOperation", "ApiReferenceLink": null, @@ -136983,7 +136983,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinter", "ApiReferenceLink": null, @@ -137047,7 +137047,7 @@ "OutputType": "IMicrosoftGraphPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinter", "ApiReferenceLink": null, @@ -137126,7 +137126,7 @@ "OutputType": "IMicrosoftGraphPrinterCapabilities" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterConnector", "ApiReferenceLink": null, @@ -137141,7 +137141,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterConnector", "ApiReferenceLink": null, @@ -137243,7 +137243,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJob", "ApiReferenceLink": null, @@ -137323,7 +137323,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJob", "ApiReferenceLink": null, @@ -137482,7 +137482,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -137530,7 +137530,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -137607,7 +137607,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTask", "ApiReferenceLink": null, @@ -137622,7 +137622,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTask", "ApiReferenceLink": null, @@ -137651,7 +137651,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTaskDefinition", "ApiReferenceLink": null, @@ -137666,7 +137666,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTaskTrigger", "ApiReferenceLink": null, @@ -137681,7 +137681,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShare", "ApiReferenceLink": null, @@ -137700,7 +137700,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShare", "ApiReferenceLink": null, @@ -137715,7 +137715,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroup", "ApiReferenceLink": null, @@ -137758,7 +137758,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -137787,7 +137787,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUser", "ApiReferenceLink": null, @@ -137830,7 +137830,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserMailboxSetting", "ApiReferenceLink": null, @@ -137845,7 +137845,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserServiceProvisioningError", "ApiReferenceLink": null, @@ -137915,7 +137915,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJob", "ApiReferenceLink": null, @@ -137930,7 +137930,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJob", "ApiReferenceLink": null, @@ -137959,7 +137959,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobDocument", "ApiReferenceLink": null, @@ -137974,7 +137974,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobDocument", "ApiReferenceLink": null, @@ -138018,7 +138018,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTask", "ApiReferenceLink": null, @@ -138033,7 +138033,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTask", "ApiReferenceLink": null, @@ -138062,7 +138062,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTaskDefinition", "ApiReferenceLink": null, @@ -138077,7 +138077,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTaskTrigger", "ApiReferenceLink": null, @@ -138092,7 +138092,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterSharePrinter", "ApiReferenceLink": null, @@ -138107,7 +138107,7 @@ "OutputType": "IMicrosoftGraphPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -138147,7 +138147,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -138226,7 +138226,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintPrinterTaskTriggerDefinition", "ApiReferenceLink": null, @@ -138241,7 +138241,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintService", "ApiReferenceLink": null, @@ -138425,7 +138425,7 @@ "OutputType": "IMicrosoftGraphPrintService" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintService", "ApiReferenceLink": null, @@ -138791,7 +138791,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintServiceEndpoint", "ApiReferenceLink": null, @@ -138975,7 +138975,7 @@ "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintServiceEndpoint", "ApiReferenceLink": null, @@ -139342,7 +139342,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShare", "ApiReferenceLink": null, @@ -139382,7 +139382,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShare", "ApiReferenceLink": null, @@ -139421,7 +139421,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedGroup", "ApiReferenceLink": null, @@ -139515,7 +139515,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -139544,7 +139544,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedUser", "ApiReferenceLink": null, @@ -139638,7 +139638,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedUserMailboxSetting", "ApiReferenceLink": null, @@ -139653,7 +139653,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedUserServiceProvisioningError", "ApiReferenceLink": null, @@ -139721,7 +139721,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJob", "ApiReferenceLink": null, @@ -139801,7 +139801,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJob", "ApiReferenceLink": null, @@ -139960,7 +139960,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobDocument", "ApiReferenceLink": null, @@ -139975,7 +139975,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobDocument", "ApiReferenceLink": null, @@ -140019,7 +140019,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobTask", "ApiReferenceLink": null, @@ -140034,7 +140034,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobTask", "ApiReferenceLink": null, @@ -140063,7 +140063,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobTaskDefinition", "ApiReferenceLink": null, @@ -140078,7 +140078,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintShareJobTaskTrigger", "ApiReferenceLink": null, @@ -140093,7 +140093,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintSharePrinter", "ApiReferenceLink": null, @@ -140133,7 +140133,7 @@ "OutputType": "IMicrosoftGraphPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinition", "ApiReferenceLink": null, @@ -140150,7 +140150,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinition", "ApiReferenceLink": null, @@ -140178,7 +140178,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -140193,7 +140193,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -140222,7 +140222,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionTaskTrigger", "ApiReferenceLink": null, @@ -140237,7 +140237,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -140269,7 +140269,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -140300,7 +140300,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApprover", "ApiReferenceLink": null, @@ -140315,7 +140315,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApprover", "ApiReferenceLink": null, @@ -140344,7 +140344,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting", "ApiReferenceLink": null, @@ -140359,7 +140359,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningError", "ApiReferenceLink": null, @@ -140388,7 +140388,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaborator", "ApiReferenceLink": null, @@ -140403,7 +140403,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaborator", "ApiReferenceLink": null, @@ -140432,7 +140432,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting", "ApiReferenceLink": null, @@ -140447,7 +140447,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningError", "ApiReferenceLink": null, @@ -140507,7 +140507,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -140522,7 +140522,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -140585,7 +140585,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestTeam", "ApiReferenceLink": null, @@ -140600,7 +140600,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccess", "ApiReferenceLink": null, @@ -140615,7 +140615,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccess" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccess", "ApiReferenceLink": null, @@ -140643,7 +140643,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResource", "ApiReferenceLink": null, @@ -140658,7 +140658,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResource", "ApiReferenceLink": null, @@ -140687,7 +140687,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceParent", "ApiReferenceLink": null, @@ -140702,7 +140702,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignment", "ApiReferenceLink": null, @@ -140717,7 +140717,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignment", "ApiReferenceLink": null, @@ -140746,7 +140746,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentLinkedEligibleRoleAssignment", "ApiReferenceLink": null, @@ -140761,7 +140761,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", "ApiReferenceLink": null, @@ -140776,7 +140776,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", "ApiReferenceLink": null, @@ -140805,7 +140805,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestResource", "ApiReferenceLink": null, @@ -140820,7 +140820,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinition", "ApiReferenceLink": null, @@ -140835,7 +140835,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinitionResource", "ApiReferenceLink": null, @@ -140850,7 +140850,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinitionRoleSetting", "ApiReferenceLink": null, @@ -140865,7 +140865,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestSubject", "ApiReferenceLink": null, @@ -140880,7 +140880,7 @@ "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentResource", "ApiReferenceLink": null, @@ -140895,7 +140895,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -140910,7 +140910,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinitionResource", "ApiReferenceLink": null, @@ -140925,7 +140925,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinitionRoleSetting", "ApiReferenceLink": null, @@ -140940,7 +140940,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentSubject", "ApiReferenceLink": null, @@ -140955,7 +140955,7 @@ "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinition", "ApiReferenceLink": null, @@ -140970,7 +140970,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinition", "ApiReferenceLink": null, @@ -140999,7 +140999,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionResource", "ApiReferenceLink": null, @@ -141014,7 +141014,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionRoleSetting", "ApiReferenceLink": null, @@ -141029,7 +141029,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSetting", "ApiReferenceLink": null, @@ -141044,7 +141044,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSetting", "ApiReferenceLink": null, @@ -141073,7 +141073,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingResource", "ApiReferenceLink": null, @@ -141088,7 +141088,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinition", "ApiReferenceLink": null, @@ -141103,7 +141103,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinitionResource", "ApiReferenceLink": null, @@ -141118,7 +141118,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinitionRoleSetting", "ApiReferenceLink": null, @@ -141133,7 +141133,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignment", "ApiReferenceLink": null, @@ -141148,7 +141148,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignment", "ApiReferenceLink": null, @@ -141177,7 +141177,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentLinkedEligibleRoleAssignment", "ApiReferenceLink": null, @@ -141192,7 +141192,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequest", "ApiReferenceLink": null, @@ -141207,7 +141207,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequest", "ApiReferenceLink": null, @@ -141236,7 +141236,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestResource", "ApiReferenceLink": null, @@ -141251,7 +141251,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestRoleDefinition", "ApiReferenceLink": null, @@ -141266,7 +141266,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestSubject", "ApiReferenceLink": null, @@ -141281,7 +141281,7 @@ "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentResource", "ApiReferenceLink": null, @@ -141296,7 +141296,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -141311,7 +141311,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentSubject", "ApiReferenceLink": null, @@ -141326,7 +141326,7 @@ "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinition", "ApiReferenceLink": null, @@ -141341,7 +141341,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinition", "ApiReferenceLink": null, @@ -141370,7 +141370,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionResource", "ApiReferenceLink": null, @@ -141385,7 +141385,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionRoleSetting", "ApiReferenceLink": null, @@ -141400,7 +141400,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSetting", "ApiReferenceLink": null, @@ -141415,7 +141415,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSetting", "ApiReferenceLink": null, @@ -141444,7 +141444,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSettingResource", "ApiReferenceLink": null, @@ -141459,7 +141459,7 @@ "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSettingRoleDefinition", "ApiReferenceLink": null, @@ -141474,7 +141474,7 @@ "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApproval", "ApiReferenceLink": null, @@ -141489,7 +141489,7 @@ "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApproval", "ApiReferenceLink": null, @@ -141517,7 +141517,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRequest", "ApiReferenceLink": null, @@ -141532,7 +141532,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfo", "ApiReferenceLink": null, @@ -141547,7 +141547,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignment", "ApiReferenceLink": null, @@ -141562,7 +141562,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignment", "ApiReferenceLink": null, @@ -141591,7 +141591,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoSetting", "ApiReferenceLink": null, @@ -141606,7 +141606,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoSummary", "ApiReferenceLink": null, @@ -141621,7 +141621,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedOperationEvent", "ApiReferenceLink": null, @@ -141636,7 +141636,7 @@ "OutputType": "IMicrosoftGraphPrivilegedOperationEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedOperationEvent", "ApiReferenceLink": null, @@ -141664,7 +141664,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRole", "ApiReferenceLink": null, @@ -141679,7 +141679,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRole", "ApiReferenceLink": null, @@ -141709,7 +141709,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequest", "ApiReferenceLink": null, @@ -141724,7 +141724,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequest", "ApiReferenceLink": null, @@ -141786,7 +141786,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfo", "ApiReferenceLink": null, @@ -141801,7 +141801,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignment", "ApiReferenceLink": null, @@ -141816,7 +141816,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignment", "ApiReferenceLink": null, @@ -141845,7 +141845,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSetting", "ApiReferenceLink": null, @@ -141860,7 +141860,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSummary", "ApiReferenceLink": null, @@ -141875,7 +141875,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfo", "ApiReferenceLink": null, @@ -141890,7 +141890,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignment", "ApiReferenceLink": null, @@ -141905,7 +141905,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignment", "ApiReferenceLink": null, @@ -141934,7 +141934,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoSetting", "ApiReferenceLink": null, @@ -141949,7 +141949,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoSummary", "ApiReferenceLink": null, @@ -141978,7 +141978,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleRoleAssignment", "ApiReferenceLink": null, @@ -141995,7 +141995,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleRoleAssignment", "ApiReferenceLink": null, @@ -142010,7 +142010,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleSetting", "ApiReferenceLink": null, @@ -142025,7 +142025,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleSummary", "ApiReferenceLink": null, @@ -142040,7 +142040,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgram", "ApiReferenceLink": null, @@ -142055,7 +142055,7 @@ "OutputType": "IMicrosoftGraphProgram" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgram", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-list?view=graph-rest-beta", @@ -142086,7 +142086,7 @@ "OutputType": "IMicrosoftGraphProgram" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgramControl", "ApiReferenceLink": null, @@ -142105,7 +142105,7 @@ "OutputType": "IMicrosoftGraphProgramControl" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgramControl", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-list?view=graph-rest-beta", @@ -142173,7 +142173,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgramControlProgram", "ApiReferenceLink": null, @@ -142190,7 +142190,7 @@ "OutputType": "IMicrosoftGraphProgram" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgramControlType", "ApiReferenceLink": null, @@ -142205,7 +142205,7 @@ "OutputType": "IMicrosoftGraphProgramControlType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaProgramControlType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontroltype-list?view=graph-rest-beta", @@ -142298,7 +142298,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAppCredentialSignInActivity", "ApiReferenceLink": null, @@ -142313,7 +142313,7 @@ "OutputType": "IMicrosoftGraphAppCredentialSignInActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAppCredentialSignInActivity", "ApiReferenceLink": null, @@ -142341,7 +142341,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportApplicationSignInDetailedSummary", "ApiReferenceLink": null, @@ -142356,7 +142356,7 @@ "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportApplicationSignInDetailedSummary", "ApiReferenceLink": null, @@ -142426,7 +142426,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAuthenticationMethod", "ApiReferenceLink": null, @@ -142440,7 +142440,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodsRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -142472,7 +142472,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -142534,7 +142534,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportAzureAdApplicationSignInSummary", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getazureadapplicationsigninsummary?view=graph-rest-beta", @@ -142594,7 +142594,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportCredentialUsageSummary", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getcredentialusagesummary?view=graph-rest-beta", @@ -142609,7 +142609,7 @@ "OutputType": "IMicrosoftGraphCredentialUsageSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportCredentialUserRegistrationCount", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getcredentialuserregistrationcount?view=graph-rest-beta", @@ -142623,7 +142623,7 @@ "OutputType": "IMicrosoftGraphCredentialUserRegistrationCount" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportCredentialUserRegistrationDetail", "ApiReferenceLink": null, @@ -142638,7 +142638,7 @@ "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportCredentialUserRegistrationDetail", "ApiReferenceLink": null, @@ -142666,7 +142666,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsage", "ApiReferenceLink": null, @@ -142681,7 +142681,7 @@ "OutputType": "IMicrosoftGraphPrintUsage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsage", "ApiReferenceLink": null, @@ -142695,7 +142695,7 @@ "OutputType": "IMicrosoftGraphPrintUsage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByPrinter", "ApiReferenceLink": null, @@ -142710,7 +142710,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByPrinter", "ApiReferenceLink": null, @@ -142738,7 +142738,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByUser", "ApiReferenceLink": null, @@ -142753,7 +142753,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByUser", "ApiReferenceLink": null, @@ -142795,7 +142795,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinter", "ApiReferenceLink": null, @@ -142810,7 +142810,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinter", "ApiReferenceLink": null, @@ -142838,7 +142838,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUser", "ApiReferenceLink": null, @@ -142853,7 +142853,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUser", "ApiReferenceLink": null, @@ -143263,7 +143263,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinter", "ApiReferenceLink": null, @@ -143278,7 +143278,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinter", "ApiReferenceLink": null, @@ -143306,7 +143306,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByUser", "ApiReferenceLink": null, @@ -143321,7 +143321,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByUser", "ApiReferenceLink": null, @@ -143349,7 +143349,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinter", "ApiReferenceLink": null, @@ -143364,7 +143364,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinter", "ApiReferenceLink": null, @@ -143392,7 +143392,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUser", "ApiReferenceLink": null, @@ -143407,7 +143407,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUser", "ApiReferenceLink": null, @@ -143477,7 +143477,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365ActiveUserCount", "ApiReferenceLink": null, @@ -143492,7 +143492,7 @@ "OutputType": "IMicrosoftGraphOffice365ActiveUserCounts" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365ActiveUserDetail", "ApiReferenceLink": null, @@ -143509,7 +143509,7 @@ "OutputType": "IMicrosoftGraphOffice365ActiveUserDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityCount", "ApiReferenceLink": null, @@ -143524,7 +143524,7 @@ "OutputType": "IMicrosoftGraphOffice365GroupsActivityCounts" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityDetail", "ApiReferenceLink": null, @@ -143541,7 +143541,7 @@ "OutputType": "IMicrosoftGraphOffice365GroupsActivityDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityFileCount", "ApiReferenceLink": null, @@ -143556,7 +143556,7 @@ "OutputType": "IMicrosoftGraphOffice365GroupsActivityFileCounts" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityGroupCount", "ApiReferenceLink": null, @@ -143571,7 +143571,7 @@ "OutputType": "IMicrosoftGraphOffice365GroupsActivityGroupCounts" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityStorage", "ApiReferenceLink": null, @@ -143586,7 +143586,7 @@ "OutputType": "IMicrosoftGraphOffice365GroupsActivityStorage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportOffice365ServiceUserCount", "ApiReferenceLink": null, @@ -143710,7 +143710,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartner", "ApiReferenceLink": null, @@ -143724,7 +143724,7 @@ "OutputType": "IMicrosoftGraphPartners" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBilling", "ApiReferenceLink": null, @@ -143738,7 +143738,7 @@ "OutputType": "IMicrosoftGraphPartnersBilling" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -143753,7 +143753,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -143781,7 +143781,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -143796,7 +143796,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -143824,7 +143824,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingReconciliation", "ApiReferenceLink": null, @@ -143838,7 +143838,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingReconciliation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingReconciliationBilled", "ApiReferenceLink": null, @@ -143852,7 +143852,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingUsage", "ApiReferenceLink": null, @@ -143866,7 +143866,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingUsageBilled", "ApiReferenceLink": null, @@ -143880,7 +143880,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingUsageUnbilled", "ApiReferenceLink": null, @@ -143909,7 +143909,7 @@ "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportRelyingPartyDetailedSummary", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getrelyingpartydetailedsummary?view=graph-rest-beta", @@ -143924,7 +143924,7 @@ "OutputType": "IMicrosoftGraphRelyingPartyDetailedSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSecurity", "ApiReferenceLink": null, @@ -143980,7 +143980,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportServiceActivity", "ApiReferenceLink": null, @@ -144069,7 +144069,7 @@ "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportServicePrincipalSignInActivity", "ApiReferenceLink": null, @@ -144084,7 +144084,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalSignInActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportServicePrincipalSignInActivity", "ApiReferenceLink": null, @@ -144480,7 +144480,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSla", "ApiReferenceLink": null, @@ -144494,7 +144494,7 @@ "OutputType": "IMicrosoftGraphServiceLevelAgreementRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportSlaAzureAdAuthentication", "ApiReferenceLink": null, @@ -144784,7 +144784,7 @@ "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserCredentialUsageDetail", "ApiReferenceLink": null, @@ -144799,7 +144799,7 @@ "OutputType": "IMicrosoftGraphUserCredentialUsageDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserCredentialUsageDetail", "ApiReferenceLink": null, @@ -144827,7 +144827,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsight", "ApiReferenceLink": null, @@ -144841,7 +144841,7 @@ "OutputType": "IMicrosoftGraphUserInsightsRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDaily", "ApiReferenceLink": null, @@ -144855,7 +144855,7 @@ "OutputType": "IMicrosoftGraphDailyUserInsightMetricsRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUser", "ApiReferenceLink": null, @@ -144870,7 +144870,7 @@ "OutputType": "IMicrosoftGraphActiveUsersMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUser", "ApiReferenceLink": null, @@ -144884,7 +144884,7 @@ "OutputType": "IMicrosoftGraphActiveUsersMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdown", "ApiReferenceLink": null, @@ -144899,7 +144899,7 @@ "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdown", "ApiReferenceLink": null, @@ -144941,7 +144941,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyAuthentication", "ApiReferenceLink": null, @@ -144956,7 +144956,7 @@ "OutputType": "IMicrosoftGraphAuthenticationsMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyAuthentication", "ApiReferenceLink": null, @@ -144984,7 +144984,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUser", "ApiReferenceLink": null, @@ -144999,7 +144999,7 @@ "OutputType": "IMicrosoftGraphDailyInactiveUsersMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUser", "ApiReferenceLink": null, @@ -145013,7 +145013,7 @@ "OutputType": "IMicrosoftGraphDailyInactiveUsersMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplication", "ApiReferenceLink": null, @@ -145028,7 +145028,7 @@ "OutputType": "IMicrosoftGraphDailyInactiveUsersByApplicationMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplication", "ApiReferenceLink": null, @@ -145070,7 +145070,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyMfaCompletion", "ApiReferenceLink": null, @@ -145085,7 +145085,7 @@ "OutputType": "IMicrosoftGraphMfaCompletionMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyMfaCompletion", "ApiReferenceLink": null, @@ -145113,7 +145113,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySignUp", "ApiReferenceLink": null, @@ -145128,7 +145128,7 @@ "OutputType": "IMicrosoftGraphUserSignUpMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySignUp", "ApiReferenceLink": null, @@ -145156,7 +145156,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySummary", "ApiReferenceLink": null, @@ -145171,7 +145171,7 @@ "OutputType": "IMicrosoftGraphInsightSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySummary", "ApiReferenceLink": null, @@ -145199,7 +145199,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyUserCount", "ApiReferenceLink": null, @@ -145215,7 +145215,7 @@ "OutputType": "IMicrosoftGraphUserCountMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyUserCount", "ApiReferenceLink": null, @@ -145229,7 +145229,7 @@ "OutputType": "IMicrosoftGraphUserCountMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthly", "ApiReferenceLink": null, @@ -145243,7 +145243,7 @@ "OutputType": "IMicrosoftGraphMonthlyUserInsightMetricsRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUser", "ApiReferenceLink": null, @@ -145258,7 +145258,7 @@ "OutputType": "IMicrosoftGraphActiveUsersMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUser", "ApiReferenceLink": null, @@ -145272,7 +145272,7 @@ "OutputType": "IMicrosoftGraphActiveUsersMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdown", "ApiReferenceLink": null, @@ -145287,7 +145287,7 @@ "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdown", "ApiReferenceLink": null, @@ -145329,7 +145329,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyAuthentication", "ApiReferenceLink": null, @@ -145344,7 +145344,7 @@ "OutputType": "IMicrosoftGraphAuthenticationsMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyAuthentication", "ApiReferenceLink": null, @@ -145372,7 +145372,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUser", "ApiReferenceLink": null, @@ -145387,7 +145387,7 @@ "OutputType": "IMicrosoftGraphMonthlyInactiveUsersMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUser", "ApiReferenceLink": null, @@ -145401,7 +145401,7 @@ "OutputType": "IMicrosoftGraphMonthlyInactiveUsersMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplication", "ApiReferenceLink": null, @@ -145416,7 +145416,7 @@ "OutputType": "IMicrosoftGraphMonthlyInactiveUsersByApplicationMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplication", "ApiReferenceLink": null, @@ -145458,7 +145458,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletion", "ApiReferenceLink": null, @@ -145473,7 +145473,7 @@ "OutputType": "IMicrosoftGraphMfaCompletionMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletion", "ApiReferenceLink": null, @@ -145501,7 +145501,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyRequest", "ApiReferenceLink": null, @@ -145516,7 +145516,7 @@ "OutputType": "IMicrosoftGraphUserRequestsMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyRequest", "ApiReferenceLink": null, @@ -145544,7 +145544,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySignUp", "ApiReferenceLink": null, @@ -145559,7 +145559,7 @@ "OutputType": "IMicrosoftGraphUserSignUpMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySignUp", "ApiReferenceLink": null, @@ -145587,7 +145587,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySummary", "ApiReferenceLink": null, @@ -145602,7 +145602,7 @@ "OutputType": "IMicrosoftGraphInsightSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySummary", "ApiReferenceLink": null, @@ -145771,7 +145771,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskDetection", "ApiReferenceLink": null, @@ -145786,7 +145786,7 @@ "OutputType": "IMicrosoftGraphRiskDetection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskDetection", "ApiReferenceLink": null, @@ -145814,7 +145814,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyServicePrincipal", "ApiReferenceLink": null, @@ -145846,7 +145846,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyServicePrincipal", "ApiReferenceLink": null, @@ -145908,7 +145908,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -145923,7 +145923,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -145986,7 +145986,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyUser", "ApiReferenceLink": null, @@ -146001,7 +146001,7 @@ "OutputType": "IMicrosoftGraphRiskyUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyUser", "ApiReferenceLink": null, @@ -146029,7 +146029,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyUserHistory", "ApiReferenceLink": null, @@ -146061,7 +146061,7 @@ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRiskyUserHistory", "ApiReferenceLink": null, @@ -146124,7 +146124,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagement", "ApiReferenceLink": null, @@ -146171,7 +146171,7 @@ "OutputType": "IMicrosoftGraphRoleManagement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPc", "ApiReferenceLink": null, @@ -146185,7 +146185,7 @@ "OutputType": "IMicrosoftGraphRbacApplicationMultiple" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespace", "ApiReferenceLink": null, @@ -146200,7 +146200,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespace", "ApiReferenceLink": null, @@ -146228,7 +146228,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -146243,7 +146243,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -146257,7 +146257,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionAuthenticationContext", "ApiReferenceLink": null, @@ -146287,7 +146287,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -146302,7 +146302,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment", "ApiReferenceLink": null, @@ -146350,7 +146350,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment", "ApiReferenceLink": null, @@ -146397,7 +146397,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -146412,7 +146412,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -146488,7 +146488,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -146503,7 +146503,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -146532,7 +146532,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -146547,7 +146547,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -146576,7 +146576,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -146591,7 +146591,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition", "ApiReferenceLink": null, @@ -146711,7 +146711,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition", "ApiReferenceLink": null, @@ -146949,7 +146949,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -146964,7 +146964,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -146978,7 +146978,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagement", "ApiReferenceLink": null, @@ -147025,7 +147025,7 @@ "OutputType": "IMicrosoftGraphRbacApplicationMultiple" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespace", "ApiReferenceLink": null, @@ -147040,7 +147040,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespace", "ApiReferenceLink": null, @@ -147068,7 +147068,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -147083,7 +147083,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -147097,7 +147097,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionAuthenticationContext", "ApiReferenceLink": null, @@ -147127,7 +147127,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -147142,7 +147142,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -147190,7 +147190,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -147237,7 +147237,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -147252,7 +147252,7 @@ "OutputType": "IMicrosoftGraphAppScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -147328,7 +147328,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -147343,7 +147343,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -147372,7 +147372,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -147387,7 +147387,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -147416,7 +147416,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -147431,7 +147431,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -147551,7 +147551,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -147789,7 +147789,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -147804,7 +147804,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -147818,7 +147818,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectory", "ApiReferenceLink": null, @@ -147832,7 +147832,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -147872,7 +147872,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -147950,7 +147950,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -147990,7 +147990,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -148029,7 +148029,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionAuthenticationContext", "ApiReferenceLink": null, @@ -148084,7 +148084,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -148099,7 +148099,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -148155,7 +148155,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -148210,7 +148210,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApproval", "ApiReferenceLink": null, @@ -148225,7 +148225,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApproval", "ApiReferenceLink": null, @@ -148253,7 +148253,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -148268,7 +148268,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -148297,7 +148297,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -148367,7 +148367,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -148382,7 +148382,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -148397,7 +148397,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -148412,7 +148412,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -148468,7 +148468,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -148523,7 +148523,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing", "ApiReferenceLink": null, @@ -148538,7 +148538,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleAppScope", "ApiReferenceLink": null, @@ -148608,7 +148608,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope", "ApiReferenceLink": null, @@ -148623,7 +148623,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -148679,7 +148679,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -148734,7 +148734,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing", "ApiReferenceLink": null, @@ -148749,7 +148749,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -148819,7 +148819,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -148834,7 +148834,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -148849,7 +148849,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -148864,7 +148864,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedulePrincipal", "ApiReferenceLink": null, @@ -148879,7 +148879,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -148935,7 +148935,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -148990,7 +148990,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing", "ApiReferenceLink": null, @@ -149005,7 +149005,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope", "ApiReferenceLink": null, @@ -149075,7 +149075,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -149090,7 +149090,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -149105,7 +149105,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -149120,7 +149120,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -149135,7 +149135,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition", "ApiReferenceLink": null, @@ -149150,7 +149150,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -149206,7 +149206,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -149316,7 +149316,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -149331,7 +149331,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -149360,7 +149360,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -149416,7 +149416,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -149471,7 +149471,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleAppScope", "ApiReferenceLink": null, @@ -149541,7 +149541,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope", "ApiReferenceLink": null, @@ -149556,7 +149556,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -149612,7 +149612,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -149667,7 +149667,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -149737,7 +149737,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -149752,7 +149752,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -149767,7 +149767,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -149782,7 +149782,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedulePrincipal", "ApiReferenceLink": null, @@ -149797,7 +149797,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -149853,7 +149853,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -149908,7 +149908,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope", "ApiReferenceLink": null, @@ -149978,7 +149978,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -149993,7 +149993,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -150008,7 +150008,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -150023,7 +150023,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -150038,7 +150038,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition", "ApiReferenceLink": null, @@ -150053,7 +150053,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -150068,7 +150068,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -150115,7 +150115,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -150177,7 +150177,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -150192,7 +150192,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -150207,7 +150207,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -150222,7 +150222,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseApp", "ApiReferenceLink": null, @@ -150237,7 +150237,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseApp", "ApiReferenceLink": null, @@ -150265,7 +150265,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespace", "ApiReferenceLink": null, @@ -150280,7 +150280,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespace", "ApiReferenceLink": null, @@ -150309,7 +150309,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -150324,7 +150324,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -150338,7 +150338,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionAuthenticationContext", "ApiReferenceLink": null, @@ -150368,7 +150368,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -150383,7 +150383,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignment", "ApiReferenceLink": null, @@ -150398,7 +150398,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignment", "ApiReferenceLink": null, @@ -150412,7 +150412,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", "ApiReferenceLink": null, @@ -150427,7 +150427,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", "ApiReferenceLink": null, @@ -150456,7 +150456,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -150471,7 +150471,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -150500,7 +150500,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -150530,7 +150530,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -150545,7 +150545,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -150560,7 +150560,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -150575,7 +150575,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -150590,7 +150590,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -150604,7 +150604,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleActivatedUsing", "ApiReferenceLink": null, @@ -150619,7 +150619,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleAppScope", "ApiReferenceLink": null, @@ -150649,7 +150649,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleDirectoryScope", "ApiReferenceLink": null, @@ -150664,7 +150664,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -150679,7 +150679,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -150693,7 +150693,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceActivatedUsing", "ApiReferenceLink": null, @@ -150708,7 +150708,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -150738,7 +150738,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -150753,7 +150753,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -150768,7 +150768,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -150783,7 +150783,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedulePrincipal", "ApiReferenceLink": null, @@ -150798,7 +150798,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -150813,7 +150813,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -150827,7 +150827,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestActivatedUsing", "ApiReferenceLink": null, @@ -150842,7 +150842,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestAppScope", "ApiReferenceLink": null, @@ -150872,7 +150872,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -150887,7 +150887,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -150902,7 +150902,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -150917,7 +150917,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -150932,7 +150932,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRoleDefinition", "ApiReferenceLink": null, @@ -150947,7 +150947,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinition", "ApiReferenceLink": null, @@ -150962,7 +150962,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinition", "ApiReferenceLink": null, @@ -150991,7 +150991,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -151006,7 +151006,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -151035,7 +151035,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -151050,7 +151050,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -151064,7 +151064,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleAppScope", "ApiReferenceLink": null, @@ -151094,7 +151094,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleDirectoryScope", "ApiReferenceLink": null, @@ -151109,7 +151109,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -151124,7 +151124,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -151138,7 +151138,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -151168,7 +151168,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -151183,7 +151183,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -151198,7 +151198,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -151213,7 +151213,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedulePrincipal", "ApiReferenceLink": null, @@ -151228,7 +151228,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -151243,7 +151243,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -151257,7 +151257,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestAppScope", "ApiReferenceLink": null, @@ -151287,7 +151287,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -151302,7 +151302,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -151317,7 +151317,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -151332,7 +151332,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -151347,7 +151347,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRoleDefinition", "ApiReferenceLink": null, @@ -151362,7 +151362,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -151377,7 +151377,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -151391,7 +151391,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -151421,7 +151421,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -151436,7 +151436,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -151451,7 +151451,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -151466,7 +151466,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagement", "ApiReferenceLink": null, @@ -151480,7 +151480,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -151495,7 +151495,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -151523,7 +151523,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -151538,7 +151538,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -151552,7 +151552,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionAuthenticationContext", "ApiReferenceLink": null, @@ -151582,7 +151582,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -151597,7 +151597,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -151669,7 +151669,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -151740,7 +151740,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", "ApiReferenceLink": null, @@ -151755,7 +151755,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", "ApiReferenceLink": null, @@ -151783,7 +151783,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -151798,7 +151798,7 @@ "OutputType": "IMicrosoftGraphApprovalStep" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "ApiReferenceLink": null, @@ -151827,7 +151827,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -151913,7 +151913,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -151928,7 +151928,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -151943,7 +151943,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -151958,7 +151958,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -151973,7 +151973,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -151987,7 +151987,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing", "ApiReferenceLink": null, @@ -152002,7 +152002,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope", "ApiReferenceLink": null, @@ -152031,7 +152031,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope", "ApiReferenceLink": null, @@ -152046,7 +152046,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -152061,7 +152061,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -152075,7 +152075,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing", "ApiReferenceLink": null, @@ -152090,7 +152090,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -152119,7 +152119,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -152134,7 +152134,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -152149,7 +152149,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -152164,7 +152164,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal", "ApiReferenceLink": null, @@ -152179,7 +152179,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -152194,7 +152194,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -152208,7 +152208,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing", "ApiReferenceLink": null, @@ -152223,7 +152223,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope", "ApiReferenceLink": null, @@ -152252,7 +152252,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -152267,7 +152267,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -152282,7 +152282,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -152297,7 +152297,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -152312,7 +152312,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition", "ApiReferenceLink": null, @@ -152327,7 +152327,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -152447,7 +152447,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -152685,7 +152685,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -152700,7 +152700,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -152729,7 +152729,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -152744,7 +152744,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -152758,7 +152758,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope", "ApiReferenceLink": null, @@ -152787,7 +152787,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope", "ApiReferenceLink": null, @@ -152802,7 +152802,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -152817,7 +152817,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -152831,7 +152831,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -152860,7 +152860,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -152875,7 +152875,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -152890,7 +152890,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -152905,7 +152905,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal", "ApiReferenceLink": null, @@ -152920,7 +152920,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -152935,7 +152935,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -152949,7 +152949,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope", "ApiReferenceLink": null, @@ -152978,7 +152978,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -152993,7 +152993,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -153008,7 +153008,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -153023,7 +153023,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -153038,7 +153038,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition", "ApiReferenceLink": null, @@ -153053,7 +153053,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -153068,7 +153068,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -153082,7 +153082,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -153111,7 +153111,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -153126,7 +153126,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -153141,7 +153141,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -153156,7 +153156,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchange", "ApiReferenceLink": null, @@ -153170,7 +153170,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope", "ApiReferenceLink": null, @@ -153210,7 +153210,7 @@ "OutputType": "IMicrosoftGraphCustomAppScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope", "ApiReferenceLink": null, @@ -153288,7 +153288,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespace", "ApiReferenceLink": null, @@ -153303,7 +153303,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespace", "ApiReferenceLink": null, @@ -153331,7 +153331,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -153346,7 +153346,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -153360,7 +153360,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionAuthenticationContext", "ApiReferenceLink": null, @@ -153390,7 +153390,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionResourceScope", "ApiReferenceLink": null, @@ -153405,7 +153405,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment", "ApiReferenceLink": null, @@ -153461,7 +153461,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment", "ApiReferenceLink": null, @@ -153516,7 +153516,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -153586,7 +153586,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -153601,7 +153601,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -153616,7 +153616,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -153631,7 +153631,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition", "ApiReferenceLink": null, @@ -153703,7 +153703,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition", "ApiReferenceLink": null, @@ -153845,7 +153845,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -153860,7 +153860,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -153874,7 +153874,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -153889,7 +153889,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignment", "ApiReferenceLink": null, @@ -153903,7 +153903,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -153932,7 +153932,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -153947,7 +153947,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -153962,7 +153962,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -153977,7 +153977,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-get?view=graph-rest-beta", @@ -154009,7 +154009,7 @@ "OutputType": "IMicrosoftGraphSchemaExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-list?view=graph-rest-beta", @@ -154071,7 +154071,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchAcronym", "ApiReferenceLink": null, @@ -154103,7 +154103,7 @@ "OutputType": "IMicrosoftGraphSearchAcronym" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchAcronym", "ApiReferenceLink": null, @@ -154165,7 +154165,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchBookmark", "ApiReferenceLink": null, @@ -154197,7 +154197,7 @@ "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchBookmark", "ApiReferenceLink": null, @@ -154259,7 +154259,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchEntity", "ApiReferenceLink": null, @@ -154273,7 +154273,7 @@ "OutputType": "IMicrosoftGraphSearchEntity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchQna", "ApiReferenceLink": null, @@ -154305,7 +154305,7 @@ "OutputType": "IMicrosoftGraphSearchQna" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSearchQna", "ApiReferenceLink": null, @@ -154367,7 +154367,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAction", "ApiReferenceLink": null, @@ -154399,7 +154399,7 @@ "OutputType": "IMicrosoftGraphSecurityAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAction", "ApiReferenceLink": null, @@ -154461,7 +154461,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAlert", "ApiReferenceLink": null, @@ -154493,7 +154493,7 @@ "OutputType": "IMicrosoftGraphAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAlert", "ApiReferenceLink": null, @@ -154555,7 +154555,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAlertV2", "ApiReferenceLink": null, @@ -154587,7 +154587,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAlertV2", "ApiReferenceLink": null, @@ -154649,7 +154649,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulation", "ApiReferenceLink": null, @@ -154665,7 +154665,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulation", "ApiReferenceLink": null, @@ -154679,7 +154679,7 @@ "OutputType": "IMicrosoftGraphSimulation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -154694,7 +154694,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -154722,7 +154722,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -154737,7 +154737,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -154780,7 +154780,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -154795,7 +154795,7 @@ "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -154823,7 +154823,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -154838,7 +154838,7 @@ "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -154867,7 +154867,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -154884,7 +154884,7 @@ "OutputType": "IMicrosoftGraphLandingPage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -154912,7 +154912,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -154927,7 +154927,7 @@ "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -154956,7 +154956,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -154973,7 +154973,7 @@ "OutputType": "IMicrosoftGraphLoginPage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -155001,7 +155001,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -155016,7 +155016,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -155044,7 +155044,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -155061,7 +155061,7 @@ "OutputType": "IMicrosoftGraphPayload" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -155089,7 +155089,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -155104,7 +155104,7 @@ "OutputType": "IMicrosoftGraphTraining" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -155118,7 +155118,7 @@ "OutputType": "IMicrosoftGraphTraining" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaign", "ApiReferenceLink": null, @@ -155133,7 +155133,7 @@ "OutputType": "IMicrosoftGraphTrainingCampaign" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaign", "ApiReferenceLink": null, @@ -155175,7 +155175,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -155190,7 +155190,7 @@ "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -155219,7 +155219,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAuditLog", "ApiReferenceLink": null, @@ -155233,7 +155233,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditCoreRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAuditLogQuery", "ApiReferenceLink": null, @@ -155305,7 +155305,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditLogQuery" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAuditLogQuery", "ApiReferenceLink": null, @@ -155447,7 +155447,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAuditLogQueryRecord", "ApiReferenceLink": null, @@ -155462,7 +155462,7 @@ "OutputType": "IMicrosoftGraphSecurityAuditLogRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityAuditLogQueryRecord", "ApiReferenceLink": null, @@ -155605,7 +155605,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCase", "ApiReferenceLink": null, @@ -155619,7 +155619,7 @@ "OutputType": "IMicrosoftGraphSecurityCasesRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -155651,7 +155651,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -155713,7 +155713,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -155745,7 +155745,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -155808,7 +155808,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianLastIndexOperation", "ApiReferenceLink": null, @@ -155840,7 +155840,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -155855,7 +155855,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -155918,7 +155918,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceSite", "ApiReferenceLink": null, @@ -155933,7 +155933,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -155948,7 +155948,7 @@ "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -156011,7 +156011,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup", "ApiReferenceLink": null, @@ -156026,7 +156026,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -156055,7 +156055,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -156070,7 +156070,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -156133,7 +156133,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -156165,7 +156165,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold", "ApiReferenceLink": null, @@ -156228,7 +156228,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -156243,7 +156243,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", "ApiReferenceLink": null, @@ -156272,7 +156272,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceSite", "ApiReferenceLink": null, @@ -156287,7 +156287,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -156302,7 +156302,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", "ApiReferenceLink": null, @@ -156365,7 +156365,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -156397,7 +156397,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -156426,7 +156426,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation", "ApiReferenceLink": null, @@ -156441,7 +156441,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -156456,7 +156456,7 @@ "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -156519,7 +156519,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -156551,7 +156551,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -156614,7 +156614,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", "ApiReferenceLink": null, @@ -156646,7 +156646,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", "ApiReferenceLink": null, @@ -156724,7 +156724,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCustodian", "ApiReferenceLink": null, @@ -156771,7 +156771,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTag", "ApiReferenceLink": null, @@ -156803,7 +156803,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTag", "ApiReferenceLink": null, @@ -156832,7 +156832,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -156864,7 +156864,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -156927,7 +156927,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -156959,7 +156959,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -156990,7 +156990,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -157005,7 +157005,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -157034,7 +157034,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation", "ApiReferenceLink": null, @@ -157081,7 +157081,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSource", "ApiReferenceLink": null, @@ -157096,7 +157096,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSource", "ApiReferenceLink": null, @@ -157125,7 +157125,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation", "ApiReferenceLink": null, @@ -157157,7 +157157,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryEstimateOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSource", "ApiReferenceLink": null, @@ -157172,7 +157172,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSource", "ApiReferenceLink": null, @@ -157201,7 +157201,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSetting", "ApiReferenceLink": null, @@ -157233,7 +157233,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -157265,7 +157265,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -157296,7 +157296,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTag", "ApiReferenceLink": null, @@ -157311,7 +157311,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTag", "ApiReferenceLink": null, @@ -157372,7 +157372,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagParent", "ApiReferenceLink": null, @@ -157387,7 +157387,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCloudAppSecurityProfile", "ApiReferenceLink": null, @@ -157402,7 +157402,7 @@ "OutputType": "IMicrosoftGraphCloudAppSecurityProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCloudAppSecurityProfile", "ApiReferenceLink": null, @@ -157430,7 +157430,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCollaboration", "ApiReferenceLink": null, @@ -157444,7 +157444,7 @@ "OutputType": "IMicrosoftGraphSecurityCollaborationRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail", "ApiReferenceLink": null, @@ -157476,7 +157476,7 @@ "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail", "ApiReferenceLink": null, @@ -157538,7 +157538,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityDomainSecurityProfile", "ApiReferenceLink": null, @@ -157553,7 +157553,7 @@ "OutputType": "IMicrosoftGraphDomainSecurityProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityDomainSecurityProfile", "ApiReferenceLink": null, @@ -157581,7 +157581,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityFileSecurityProfile", "ApiReferenceLink": null, @@ -157596,7 +157596,7 @@ "OutputType": "IMicrosoftGraphFileSecurityProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityFileSecurityProfile", "ApiReferenceLink": null, @@ -157624,7 +157624,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityHostSecurityProfile", "ApiReferenceLink": null, @@ -157639,7 +157639,7 @@ "OutputType": "IMicrosoftGraphHostSecurityProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityHostSecurityProfile", "ApiReferenceLink": null, @@ -157667,7 +157667,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIdentity", "ApiReferenceLink": null, @@ -157681,7 +157681,7 @@ "OutputType": "IMicrosoftGraphSecurityIdentityContainer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIdentityHealthIssue", "ApiReferenceLink": null, @@ -157696,7 +157696,7 @@ "OutputType": "IMicrosoftGraphSecurityHealthIssue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIdentityHealthIssue", "ApiReferenceLink": null, @@ -157724,7 +157724,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIncident", "ApiReferenceLink": null, @@ -157756,7 +157756,7 @@ "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIncident", "ApiReferenceLink": null, @@ -157787,7 +157787,7 @@ "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIncidentAlert", "ApiReferenceLink": null, @@ -157802,7 +157802,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIncidentAlert", "ApiReferenceLink": null, @@ -157877,7 +157877,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityInformationProtection", "ApiReferenceLink": null, @@ -157891,7 +157891,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityInformationProtectionLabelPolicySetting", "ApiReferenceLink": null, @@ -157922,7 +157922,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -157954,7 +157954,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -158016,7 +158016,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabelParent", "ApiReferenceLink": null, @@ -158031,7 +158031,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIPSecurityProfile", "ApiReferenceLink": null, @@ -158046,7 +158046,7 @@ "OutputType": "IMicrosoftGraphIPSecurityProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityIPSecurityProfile", "ApiReferenceLink": null, @@ -158074,7 +158074,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabel", "ApiReferenceLink": null, @@ -158088,7 +158088,7 @@ "OutputType": "IMicrosoftGraphSecurityLabelsRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelAuthority", "ApiReferenceLink": null, @@ -158103,7 +158103,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelAuthority", "ApiReferenceLink": null, @@ -158131,7 +158131,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategory", "ApiReferenceLink": null, @@ -158146,7 +158146,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategory", "ApiReferenceLink": null, @@ -158174,7 +158174,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -158189,7 +158189,7 @@ "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -158218,7 +158218,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelCitation", "ApiReferenceLink": null, @@ -158233,7 +158233,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelCitation", "ApiReferenceLink": null, @@ -158261,7 +158261,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelDepartment", "ApiReferenceLink": null, @@ -158276,7 +158276,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelDepartment", "ApiReferenceLink": null, @@ -158304,7 +158304,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -158319,7 +158319,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -158347,7 +158347,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionEventType", "ApiReferenceLink": null, @@ -158362,7 +158362,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -158394,7 +158394,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -158456,7 +158456,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptor", "ApiReferenceLink": null, @@ -158471,7 +158471,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorAuthorityTemplate", "ApiReferenceLink": null, @@ -158486,7 +158486,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorCategoryTemplate", "ApiReferenceLink": null, @@ -158501,7 +158501,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorCitationTemplate", "ApiReferenceLink": null, @@ -158516,7 +158516,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorDepartmentTemplate", "ApiReferenceLink": null, @@ -158531,7 +158531,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate", "ApiReferenceLink": null, @@ -158546,7 +158546,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -158561,7 +158561,7 @@ "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -158590,7 +158590,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityProviderTenantSetting", "ApiReferenceLink": null, @@ -158605,7 +158605,7 @@ "OutputType": "IMicrosoftGraphProviderTenantSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityProviderTenantSetting", "ApiReferenceLink": null, @@ -158633,7 +158633,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityRule", "ApiReferenceLink": null, @@ -158647,7 +158647,7 @@ "OutputType": "IMicrosoftGraphSecurityRulesRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityRuleDetectionRule", "ApiReferenceLink": null, @@ -158679,7 +158679,7 @@ "OutputType": "IMicrosoftGraphSecurityDetectionRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityRuleDetectionRule", "ApiReferenceLink": null, @@ -158741,7 +158741,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySecureScore", "ApiReferenceLink": null, @@ -158773,7 +158773,7 @@ "OutputType": "IMicrosoftGraphSecureScore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySecureScore", "ApiReferenceLink": null, @@ -158804,7 +158804,7 @@ "OutputType": "IMicrosoftGraphSecureScore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -158836,7 +158836,7 @@ "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -158929,7 +158929,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -158961,7 +158961,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -158992,7 +158992,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApprover", "ApiReferenceLink": null, @@ -159007,7 +159007,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApprover", "ApiReferenceLink": null, @@ -159036,7 +159036,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverMailboxSetting", "ApiReferenceLink": null, @@ -159051,7 +159051,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverServiceProvisioningError", "ApiReferenceLink": null, @@ -159080,7 +159080,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaborator", "ApiReferenceLink": null, @@ -159095,7 +159095,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaborator", "ApiReferenceLink": null, @@ -159124,7 +159124,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorMailboxSetting", "ApiReferenceLink": null, @@ -159139,7 +159139,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorServiceProvisioningError", "ApiReferenceLink": null, @@ -159246,7 +159246,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -159261,7 +159261,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -159324,7 +159324,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestTeam", "ApiReferenceLink": null, @@ -159339,7 +159339,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligence", "ApiReferenceLink": null, @@ -159353,7 +159353,7 @@ "OutputType": "IMicrosoftGraphSecurityThreatIntelligence" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -159368,7 +159368,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -159396,7 +159396,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -159413,7 +159413,7 @@ "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -159428,7 +159428,7 @@ "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicatorArtifact", "ApiReferenceLink": null, @@ -159459,7 +159459,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -159474,7 +159474,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -159488,7 +159488,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPair", "ApiReferenceLink": null, @@ -159503,7 +159503,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPair", "ApiReferenceLink": null, @@ -159532,7 +159532,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -159549,7 +159549,7 @@ "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -159580,7 +159580,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponentHost", "ApiReferenceLink": null, @@ -159595,7 +159595,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -159612,7 +159612,7 @@ "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -159643,7 +159643,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookieHost", "ApiReferenceLink": null, @@ -159672,7 +159672,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -159689,7 +159689,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -159704,7 +159704,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairChildHost", "ApiReferenceLink": null, @@ -159735,7 +159735,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairParentHost", "ApiReferenceLink": null, @@ -159750,7 +159750,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPair", "ApiReferenceLink": null, @@ -159765,7 +159765,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPair", "ApiReferenceLink": null, @@ -159794,7 +159794,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDns", "ApiReferenceLink": null, @@ -159809,7 +159809,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDns", "ApiReferenceLink": null, @@ -159838,7 +159838,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverse", "ApiReferenceLink": null, @@ -159853,7 +159853,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverse", "ApiReferenceLink": null, @@ -159882,7 +159882,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -159899,7 +159899,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -159930,7 +159930,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortHost", "ApiReferenceLink": null, @@ -159945,7 +159945,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortMostRecentSslCertificate", "ApiReferenceLink": null, @@ -159960,7 +159960,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostReputation", "ApiReferenceLink": null, @@ -159975,7 +159975,7 @@ "OutputType": "IMicrosoftGraphSecurityHostReputation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -159994,7 +159994,7 @@ "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -160025,7 +160025,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificateHost", "ApiReferenceLink": null, @@ -160040,7 +160040,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomain", "ApiReferenceLink": null, @@ -160055,7 +160055,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomain", "ApiReferenceLink": null, @@ -160084,7 +160084,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -160101,7 +160101,7 @@ "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -160132,7 +160132,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostTrackerHost", "ApiReferenceLink": null, @@ -160147,7 +160147,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostWhoi", "ApiReferenceLink": null, @@ -160162,7 +160162,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -160177,7 +160177,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -160205,7 +160205,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicator", "ApiReferenceLink": null, @@ -160220,7 +160220,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicator", "ApiReferenceLink": null, @@ -160249,7 +160249,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -160264,7 +160264,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -160278,7 +160278,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordArtifact", "ApiReferenceLink": null, @@ -160307,7 +160307,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordParentHost", "ApiReferenceLink": null, @@ -160322,7 +160322,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -160337,7 +160337,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -160351,7 +160351,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicatorArtifact", "ApiReferenceLink": null, @@ -160380,7 +160380,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -160395,7 +160395,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -160423,7 +160423,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHost", "ApiReferenceLink": null, @@ -160438,7 +160438,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHost", "ApiReferenceLink": null, @@ -160467,7 +160467,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -160482,7 +160482,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -160510,7 +160510,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomainHost", "ApiReferenceLink": null, @@ -160525,7 +160525,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -160540,7 +160540,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -160554,7 +160554,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticle", "ApiReferenceLink": null, @@ -160569,7 +160569,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticle", "ApiReferenceLink": null, @@ -160598,7 +160598,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -160613,7 +160613,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -160656,7 +160656,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -160671,7 +160671,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -160699,7 +160699,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecordHost", "ApiReferenceLink": null, @@ -160714,7 +160714,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -160729,7 +160729,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -160757,7 +160757,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistory", "ApiReferenceLink": null, @@ -160772,7 +160772,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistory", "ApiReferenceLink": null, @@ -160801,7 +160801,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHost", "ApiReferenceLink": null, @@ -160816,7 +160816,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmission", "ApiReferenceLink": null, @@ -160830,7 +160830,7 @@ "OutputType": "IMicrosoftGraphSecurityThreatSubmissionRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat", "ApiReferenceLink": null, @@ -160878,7 +160878,7 @@ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat", "ApiReferenceLink": null, @@ -160972,7 +160972,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", "ApiReferenceLink": null, @@ -161028,7 +161028,7 @@ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", "ApiReferenceLink": null, @@ -161138,7 +161138,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat", "ApiReferenceLink": null, @@ -161186,7 +161186,7 @@ "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat", "ApiReferenceLink": null, @@ -161280,7 +161280,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat", "ApiReferenceLink": null, @@ -161328,7 +161328,7 @@ "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat", "ApiReferenceLink": null, @@ -161422,7 +161422,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTiIndicator", "ApiReferenceLink": null, @@ -161437,7 +161437,7 @@ "OutputType": "IMicrosoftGraphTiIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTiIndicator", "ApiReferenceLink": null, @@ -161465,7 +161465,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTrigger", "ApiReferenceLink": null, @@ -161479,7 +161479,7 @@ "OutputType": "IMicrosoftGraphSecurityTriggersRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -161511,7 +161511,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -161573,7 +161573,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTriggerRetentionEventType", "ApiReferenceLink": null, @@ -161605,7 +161605,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTriggerType", "ApiReferenceLink": null, @@ -161619,7 +161619,7 @@ "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -161651,7 +161651,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -161713,7 +161713,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityUserSecurityProfile", "ApiReferenceLink": null, @@ -161728,7 +161728,7 @@ "OutputType": "IMicrosoftGraphUserSecurityProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSecurityUserSecurityProfile", "ApiReferenceLink": null, @@ -161756,7 +161756,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -161771,7 +161771,7 @@ "OutputType": "IMicrosoftGraphServiceHealth" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -161799,7 +161799,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -161814,7 +161814,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -161843,7 +161843,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -161858,7 +161858,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -161886,7 +161886,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -161901,7 +161901,7 @@ "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -161915,7 +161915,7 @@ "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -161930,7 +161930,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -162003,7 +162003,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-beta", @@ -162059,7 +162059,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-beta", @@ -162114,7 +162114,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppManagementPolicy", "ApiReferenceLink": null, @@ -162129,7 +162129,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppManagementPolicy", "ApiReferenceLink": null, @@ -162158,7 +162158,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -162173,7 +162173,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -162284,7 +162284,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -162299,7 +162299,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -162410,7 +162410,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-beta", @@ -162481,7 +162481,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalClaimMappingPolicy", "ApiReferenceLink": null, @@ -162702,7 +162702,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObject", "ApiReferenceLink": null, @@ -162717,7 +162717,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObject", "ApiReferenceLink": null, @@ -162772,7 +162772,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -162787,7 +162787,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -162872,7 +162872,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -162887,7 +162887,7 @@ "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -162966,7 +162966,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-beta", @@ -163021,7 +163021,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -163036,7 +163036,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -163065,7 +163065,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -163231,7 +163231,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalLicenseDetail", "ApiReferenceLink": null, @@ -163246,7 +163246,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalLicenseDetail", "ApiReferenceLink": null, @@ -163502,7 +163502,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOf", "ApiReferenceLink": null, @@ -163517,7 +163517,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOf", "ApiReferenceLink": null, @@ -163572,7 +163572,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -163587,7 +163587,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -163601,7 +163601,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -163616,7 +163616,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -163630,7 +163630,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsGroup", "ApiReferenceLink": null, @@ -163645,7 +163645,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsGroup", "ApiReferenceLink": null, @@ -163760,7 +163760,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrant", "ApiReferenceLink": null, @@ -163775,7 +163775,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrant", "ApiReferenceLink": null, @@ -163854,7 +163854,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObject", "ApiReferenceLink": null, @@ -163869,7 +163869,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObject", "ApiReferenceLink": null, @@ -163924,7 +163924,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsApplication", "ApiReferenceLink": null, @@ -163939,7 +163939,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsApplication", "ApiReferenceLink": null, @@ -163953,7 +163953,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsEndpoint", "ApiReferenceLink": null, @@ -163968,7 +163968,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsEndpoint", "ApiReferenceLink": null, @@ -163982,7 +163982,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsGroup", "ApiReferenceLink": null, @@ -163997,7 +163997,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsGroup", "ApiReferenceLink": null, @@ -164011,7 +164011,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -164026,7 +164026,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -164156,7 +164156,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwner", "ApiReferenceLink": null, @@ -164211,7 +164211,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsEndpoint", "ApiReferenceLink": null, @@ -164226,7 +164226,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsEndpoint", "ApiReferenceLink": null, @@ -164240,7 +164240,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -164255,7 +164255,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -164269,7 +164269,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsUser", "ApiReferenceLink": null, @@ -164284,7 +164284,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsUser", "ApiReferenceLink": null, @@ -164504,7 +164504,7 @@ "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration", "ApiReferenceLink": null, @@ -164519,7 +164519,7 @@ "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -164534,7 +164534,7 @@ "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -164563,7 +164563,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -164578,7 +164578,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -164606,7 +164606,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronization", "ApiReferenceLink": null, @@ -164655,7 +164655,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -164695,7 +164695,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -164734,7 +164734,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -164804,7 +164804,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchema", "ApiReferenceLink": null, @@ -164860,7 +164860,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -164875,7 +164875,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -164919,7 +164919,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -164959,7 +164959,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -165038,7 +165038,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -165078,7 +165078,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -165093,7 +165093,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -165122,7 +165122,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicy", "ApiReferenceLink": null, @@ -165137,7 +165137,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicy", "ApiReferenceLink": null, @@ -165166,7 +165166,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicy", "ApiReferenceLink": null, @@ -165181,7 +165181,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicy", "ApiReferenceLink": null, @@ -165292,7 +165292,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOf", "ApiReferenceLink": null, @@ -165307,7 +165307,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOf", "ApiReferenceLink": null, @@ -165354,7 +165354,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -165369,7 +165369,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -165383,7 +165383,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -165398,7 +165398,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -165412,7 +165412,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -165427,7 +165427,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -165596,7 +165596,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareContentTypeBase", "ApiReferenceLink": null, @@ -165611,7 +165611,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareContentTypeBaseType", "ApiReferenceLink": null, @@ -165626,7 +165626,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareContentTypeBaseType", "ApiReferenceLink": null, @@ -165669,7 +165669,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareCreatedByUser", "ApiReferenceLink": null, @@ -165684,7 +165684,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -165699,7 +165699,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -165728,7 +165728,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareDriveItem", "ApiReferenceLink": null, @@ -165896,7 +165896,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareItem", "ApiReferenceLink": null, @@ -165911,7 +165911,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareItem", "ApiReferenceLink": null, @@ -165970,7 +165970,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareItemLastModifiedByUser", "ApiReferenceLink": null, @@ -165987,7 +165987,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -166004,7 +166004,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -166036,7 +166036,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareLastModifiedByUser", "ApiReferenceLink": null, @@ -166053,7 +166053,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -166070,7 +166070,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -166102,7 +166102,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareList", "ApiReferenceLink": null, @@ -166117,7 +166117,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListActivity", "ApiReferenceLink": null, @@ -166131,7 +166131,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListColumn", "ApiReferenceLink": null, @@ -166146,7 +166146,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListColumn", "ApiReferenceLink": null, @@ -166175,7 +166175,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListColumnSourceColumn", "ApiReferenceLink": null, @@ -166190,7 +166190,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentType", "ApiReferenceLink": null, @@ -166205,7 +166205,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentType", "ApiReferenceLink": null, @@ -166219,7 +166219,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumn", "ApiReferenceLink": null, @@ -166234,7 +166234,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumn", "ApiReferenceLink": null, @@ -166263,7 +166263,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -166278,7 +166278,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -166307,7 +166307,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -166322,7 +166322,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -166351,7 +166351,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -166366,7 +166366,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", @@ -166396,7 +166396,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListCreatedByUser", "ApiReferenceLink": null, @@ -166411,7 +166411,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -166426,7 +166426,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -166455,7 +166455,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListDrive", "ApiReferenceLink": null, @@ -166470,7 +166470,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItem", "ApiReferenceLink": null, @@ -166487,7 +166487,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItem", "ApiReferenceLink": null, @@ -166501,7 +166501,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemActivity", "ApiReferenceLink": null, @@ -166516,7 +166516,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemActivityByInterval", "ApiReferenceLink": null, @@ -166533,7 +166533,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemAnalytic", "ApiReferenceLink": null, @@ -166550,7 +166550,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemCreatedByUser", "ApiReferenceLink": null, @@ -166567,7 +166567,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -166584,7 +166584,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -166616,7 +166616,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", @@ -166633,7 +166633,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -166650,7 +166650,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -166682,7 +166682,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -166699,7 +166699,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemDriveItem", "ApiReferenceLink": null, @@ -166750,7 +166750,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemField", "ApiReferenceLink": null, @@ -166767,7 +166767,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemVersion", "ApiReferenceLink": null, @@ -166784,7 +166784,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemVersion", "ApiReferenceLink": null, @@ -166816,7 +166816,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListItemVersionField", "ApiReferenceLink": null, @@ -166833,7 +166833,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListOperation", "ApiReferenceLink": null, @@ -166848,7 +166848,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListOperation", "ApiReferenceLink": null, @@ -166877,7 +166877,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListSubscription", "ApiReferenceLink": null, @@ -166892,7 +166892,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareListSubscription", "ApiReferenceLink": null, @@ -166921,7 +166921,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSharePermission", "ApiReferenceLink": null, @@ -166936,7 +166936,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareRoot", "ApiReferenceLink": null, @@ -166981,7 +166981,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-beta", @@ -167021,7 +167021,7 @@ "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": null, @@ -167035,7 +167035,7 @@ "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaShareSite", "ApiReferenceLink": null, @@ -167050,7 +167050,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-get?view=graph-rest-beta", @@ -167082,7 +167082,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list?view=graph-rest-beta", @@ -167113,7 +167113,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteActivityByInterval", "ApiReferenceLink": null, @@ -167128,7 +167128,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalytic", "ApiReferenceLink": null, @@ -167192,7 +167192,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -167207,7 +167207,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -167221,7 +167221,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -167236,7 +167236,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -167265,7 +167265,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItem", "ApiReferenceLink": null, @@ -167325,7 +167325,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -167389,7 +167389,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteAnalyticTime", "ApiReferenceLink": null, @@ -167453,7 +167453,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteApplicableContentTypeForList", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta", @@ -167516,7 +167516,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteColumn", "ApiReferenceLink": null, @@ -167564,7 +167564,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteColumn", "ApiReferenceLink": null, @@ -167659,7 +167659,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteColumnSourceColumn", "ApiReferenceLink": null, @@ -167674,7 +167674,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentType", "ApiReferenceLink": null, @@ -167722,7 +167722,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentType", "ApiReferenceLink": null, @@ -167769,7 +167769,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeBase", "ApiReferenceLink": null, @@ -167786,7 +167786,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeBaseType", "ApiReferenceLink": null, @@ -167803,7 +167803,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeBaseType", "ApiReferenceLink": null, @@ -167835,7 +167835,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumn", "ApiReferenceLink": null, @@ -167883,7 +167883,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumn", "ApiReferenceLink": null, @@ -167978,7 +167978,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -167993,7 +167993,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -168022,7 +168022,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnPosition", "ApiReferenceLink": null, @@ -168037,7 +168037,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnPosition", "ApiReferenceLink": null, @@ -168066,7 +168066,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -168081,7 +168081,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", @@ -168192,7 +168192,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteDefaultDrive", "ApiReferenceLink": null, @@ -168256,7 +168256,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-beta", @@ -168287,7 +168287,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteDrive", "ApiReferenceLink": null, @@ -168302,7 +168302,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteDrive", "ApiReferenceLink": null, @@ -168429,7 +168429,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteExternalColumn", "ApiReferenceLink": null, @@ -168444,7 +168444,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteExternalColumn", "ApiReferenceLink": null, @@ -168473,7 +168473,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPath", "ApiReferenceLink": null, @@ -168487,7 +168487,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -168504,7 +168504,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathApplicableContentTypeForList", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta", @@ -168519,7 +168519,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathColumn", "ApiReferenceLink": null, @@ -168534,7 +168534,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathContentType", "ApiReferenceLink": null, @@ -168549,7 +168549,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathDrive", "ApiReferenceLink": null, @@ -168566,7 +168566,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathDrive", "ApiReferenceLink": null, @@ -168581,7 +168581,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathExternalColumn", "ApiReferenceLink": null, @@ -168596,7 +168596,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathList", "ApiReferenceLink": null, @@ -168610,7 +168610,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -168627,7 +168627,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathOperation", "ApiReferenceLink": null, @@ -168642,7 +168642,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathPage", "ApiReferenceLink": null, @@ -168657,7 +168657,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathPermission", "ApiReferenceLink": null, @@ -168672,7 +168672,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathSite", "ApiReferenceLink": null, @@ -168687,7 +168687,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -168704,7 +168704,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteGetGraphBPrePathActivityByInterval", "ApiReferenceLink": null, @@ -168734,7 +168734,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteItemLastModifiedByUser", "ApiReferenceLink": null, @@ -168749,7 +168749,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -168764,7 +168764,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -168793,7 +168793,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteLastModifiedByUser", "ApiReferenceLink": null, @@ -168808,7 +168808,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -168823,7 +168823,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -168852,7 +168852,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteList", "ApiReferenceLink": null, @@ -168884,7 +168884,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteList", "ApiReferenceLink": null, @@ -168915,7 +168915,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListActivity", "ApiReferenceLink": null, @@ -168978,7 +168978,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListColumn", "ApiReferenceLink": null, @@ -169026,7 +169026,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListColumn", "ApiReferenceLink": null, @@ -169121,7 +169121,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListColumnSourceColumn", "ApiReferenceLink": null, @@ -169136,7 +169136,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentType", "ApiReferenceLink": null, @@ -169184,7 +169184,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentType", "ApiReferenceLink": null, @@ -169231,7 +169231,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -169279,7 +169279,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -169374,7 +169374,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -169389,7 +169389,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -169418,7 +169418,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -169433,7 +169433,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -169462,7 +169462,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -169477,7 +169477,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", @@ -169589,7 +169589,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListCreatedByUser", "ApiReferenceLink": null, @@ -169604,7 +169604,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -169619,7 +169619,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -169648,7 +169648,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListDrive", "ApiReferenceLink": null, @@ -169663,7 +169663,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItem", "ApiReferenceLink": null, @@ -169703,7 +169703,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItem", "ApiReferenceLink": null, @@ -169734,7 +169734,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemActivity", "ApiReferenceLink": null, @@ -169749,7 +169749,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemActivity", "ApiReferenceLink": null, @@ -169812,7 +169812,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityByInterval", "ApiReferenceLink": null, @@ -169891,7 +169891,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityDriveItem", "ApiReferenceLink": null, @@ -169936,7 +169936,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityListItem", "ApiReferenceLink": null, @@ -169951,7 +169951,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemAnalytic", "ApiReferenceLink": null, @@ -170015,7 +170015,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemCreatedByUser", "ApiReferenceLink": null, @@ -170030,7 +170030,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -170045,7 +170045,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -170074,7 +170074,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", @@ -170108,7 +170108,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -170164,7 +170164,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -170275,7 +170275,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -170290,7 +170290,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemDriveItem", "ApiReferenceLink": null, @@ -170384,7 +170384,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemField", "ApiReferenceLink": null, @@ -170399,7 +170399,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemVersion", "ApiReferenceLink": null, @@ -170431,7 +170431,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemVersion", "ApiReferenceLink": null, @@ -170494,7 +170494,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListItemVersionField", "ApiReferenceLink": null, @@ -170509,7 +170509,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListOperation", "ApiReferenceLink": null, @@ -170557,7 +170557,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListOperation", "ApiReferenceLink": null, @@ -170652,7 +170652,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListSubscription", "ApiReferenceLink": null, @@ -170667,7 +170667,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteListSubscription", "ApiReferenceLink": null, @@ -170696,7 +170696,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -170752,7 +170752,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -170921,7 +170921,7 @@ "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -170976,7 +170976,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -171031,7 +171031,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteOperation", "ApiReferenceLink": null, @@ -171102,7 +171102,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenotePage", "ApiReferenceLink": null, @@ -171150,7 +171150,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenotePage", "ApiReferenceLink": null, @@ -171260,7 +171260,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteResource", "ApiReferenceLink": null, @@ -171338,7 +171338,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteSection", "ApiReferenceLink": null, @@ -171394,7 +171394,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteSection", "ApiReferenceLink": null, @@ -171505,7 +171505,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -171561,7 +171561,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -171675,7 +171675,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -171730,7 +171730,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -171777,7 +171777,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOperation", "ApiReferenceLink": null, @@ -171825,7 +171825,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteOperation", "ApiReferenceLink": null, @@ -171920,7 +171920,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePage", "ApiReferenceLink": null, @@ -171952,7 +171952,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePage", "ApiReferenceLink": null, @@ -171983,7 +171983,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePage", "ApiReferenceLink": null, @@ -171998,7 +171998,7 @@ "OutputType": "IMicrosoftGraphSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePage", "ApiReferenceLink": null, @@ -172029,7 +172029,7 @@ "OutputType": "IMicrosoftGraphSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -172044,7 +172044,7 @@ "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -172059,7 +172059,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -172073,7 +172073,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -172088,7 +172088,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -172117,7 +172117,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -172132,7 +172132,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -172176,7 +172176,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -172191,7 +172191,7 @@ "OutputType": "IMicrosoftGraphVerticalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -172206,7 +172206,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -172235,7 +172235,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCreatedByUser", "ApiReferenceLink": null, @@ -172250,7 +172250,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -172265,7 +172265,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -172294,7 +172294,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUser", "ApiReferenceLink": null, @@ -172309,7 +172309,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -172324,7 +172324,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -172353,7 +172353,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -172368,7 +172368,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -172461,7 +172461,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageCreatedByUser", "ApiReferenceLink": null, @@ -172476,7 +172476,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -172491,7 +172491,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -172520,7 +172520,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageLastModifiedByUser", "ApiReferenceLink": null, @@ -172535,7 +172535,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -172550,7 +172550,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePageLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -172624,7 +172624,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePermission", "ApiReferenceLink": null, @@ -172639,7 +172639,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSitePermission", "ApiReferenceLink": null, @@ -172724,7 +172724,7 @@ "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStore", "ApiReferenceLink": null, @@ -172756,7 +172756,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroup", "ApiReferenceLink": null, @@ -172788,7 +172788,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroup", "ApiReferenceLink": null, @@ -172851,7 +172851,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -172866,7 +172866,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -172897,7 +172897,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -172914,7 +172914,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -172946,7 +172946,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -172963,7 +172963,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -172995,7 +172995,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -173012,7 +173012,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationSet", "ApiReferenceLink": null, @@ -173029,7 +173029,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationToTerm", "ApiReferenceLink": null, @@ -173046,7 +173046,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildSet", "ApiReferenceLink": null, @@ -173095,7 +173095,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -173110,7 +173110,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -173125,7 +173125,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -173154,7 +173154,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelationFromTerm", "ApiReferenceLink": null, @@ -173169,7 +173169,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelationSet", "ApiReferenceLink": null, @@ -173184,7 +173184,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelationToTerm", "ApiReferenceLink": null, @@ -173199,7 +173199,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -173231,7 +173231,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -173245,7 +173245,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -173260,7 +173260,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -173289,7 +173289,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -173304,7 +173304,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -173333,7 +173333,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -173348,7 +173348,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationSet", "ApiReferenceLink": null, @@ -173363,7 +173363,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -173378,7 +173378,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildSet", "ApiReferenceLink": null, @@ -173408,7 +173408,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -173423,7 +173423,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -173452,7 +173452,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -173467,7 +173467,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationSet", "ApiReferenceLink": null, @@ -173482,7 +173482,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationToTerm", "ApiReferenceLink": null, @@ -173497,7 +173497,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermSet", "ApiReferenceLink": null, @@ -173512,7 +173512,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSet", "ApiReferenceLink": null, @@ -173544,7 +173544,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSet", "ApiReferenceLink": null, @@ -173558,7 +173558,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -173575,7 +173575,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -173624,7 +173624,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -173641,7 +173641,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -173673,7 +173673,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -173690,7 +173690,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelationSet", "ApiReferenceLink": null, @@ -173707,7 +173707,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelationToTerm", "ApiReferenceLink": null, @@ -173724,7 +173724,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildSet", "ApiReferenceLink": null, @@ -173756,7 +173756,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -173771,7 +173771,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -173786,7 +173786,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -173800,7 +173800,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -173817,7 +173817,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -173849,7 +173849,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -173866,7 +173866,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -173898,7 +173898,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -173915,7 +173915,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationSet", "ApiReferenceLink": null, @@ -173932,7 +173932,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationToTerm", "ApiReferenceLink": null, @@ -173949,7 +173949,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildSet", "ApiReferenceLink": null, @@ -173981,7 +173981,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -173996,7 +173996,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -174025,7 +174025,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationFromTerm", "ApiReferenceLink": null, @@ -174040,7 +174040,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationSet", "ApiReferenceLink": null, @@ -174055,7 +174055,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationToTerm", "ApiReferenceLink": null, @@ -174070,7 +174070,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -174085,7 +174085,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -174099,7 +174099,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -174114,7 +174114,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -174143,7 +174143,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -174158,7 +174158,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -174187,7 +174187,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -174202,7 +174202,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationSet", "ApiReferenceLink": null, @@ -174217,7 +174217,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -174232,7 +174232,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildSet", "ApiReferenceLink": null, @@ -174262,7 +174262,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -174277,7 +174277,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -174306,7 +174306,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -174321,7 +174321,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationSet", "ApiReferenceLink": null, @@ -174336,7 +174336,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationToTerm", "ApiReferenceLink": null, @@ -174351,7 +174351,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermSet", "ApiReferenceLink": null, @@ -174366,7 +174366,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -174381,7 +174381,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -174444,7 +174444,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelationFromTerm", "ApiReferenceLink": null, @@ -174459,7 +174459,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelationSet", "ApiReferenceLink": null, @@ -174474,7 +174474,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelationToTerm", "ApiReferenceLink": null, @@ -174489,7 +174489,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -174521,7 +174521,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -174535,7 +174535,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -174550,7 +174550,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -174613,7 +174613,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -174628,7 +174628,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -174657,7 +174657,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -174672,7 +174672,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationSet", "ApiReferenceLink": null, @@ -174687,7 +174687,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -174702,7 +174702,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildSet", "ApiReferenceLink": null, @@ -174732,7 +174732,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -174747,7 +174747,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -174810,7 +174810,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -174825,7 +174825,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelationSet", "ApiReferenceLink": null, @@ -174840,7 +174840,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelationToTerm", "ApiReferenceLink": null, @@ -174855,7 +174855,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermSet", "ApiReferenceLink": null, @@ -174994,7 +174994,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSubSite", "ApiReferenceLink": null, @@ -175009,7 +175009,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaSubSite", "ApiReferenceLink": null, @@ -175072,7 +175072,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get?view=graph-rest-beta", @@ -175160,7 +175160,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teams-list?view=graph-rest-beta", @@ -175199,7 +175199,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannel", "ApiReferenceLink": null, @@ -175287,7 +175287,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannel", "ApiReferenceLink": null, @@ -175462,7 +175462,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelFileFolder", "ApiReferenceLink": null, @@ -175580,7 +175580,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMember", "ApiReferenceLink": null, @@ -175628,7 +175628,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMember", "ApiReferenceLink": null, @@ -175707,7 +175707,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessage", "ApiReferenceLink": null, @@ -175757,7 +175757,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessage", "ApiReferenceLink": null, @@ -175852,7 +175852,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -175900,7 +175900,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -175950,7 +175950,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -176045,7 +176045,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageReply", "ApiReferenceLink": null, @@ -176093,7 +176093,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageReply", "ApiReferenceLink": null, @@ -176188,7 +176188,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -176236,7 +176236,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -176286,7 +176286,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -176381,7 +176381,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelRetainedMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-getallretainedmessages?view=graph-rest-beta", @@ -176396,7 +176396,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -176430,7 +176430,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -176461,7 +176461,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -176476,7 +176476,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -176571,7 +176571,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelTab", "ApiReferenceLink": null, @@ -176683,7 +176683,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelTab", "ApiReferenceLink": null, @@ -176906,7 +176906,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamChannelTabTeamApp", "ApiReferenceLink": null, @@ -176960,7 +176960,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -176989,7 +176989,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamIncomingChannel", "ApiReferenceLink": null, @@ -177004,7 +177004,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamIncomingChannel", "ApiReferenceLink": null, @@ -177083,7 +177083,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamInstalledApp", "ApiReferenceLink": null, @@ -177243,7 +177243,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamInstalledApp", "ApiReferenceLink": null, @@ -177546,7 +177546,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamInstalledAppTeamApp", "ApiReferenceLink": null, @@ -177561,7 +177561,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -177576,7 +177576,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamMember", "ApiReferenceLink": null, @@ -177616,7 +177616,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamMember", "ApiReferenceLink": null, @@ -177695,7 +177695,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOpenShift", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-getopenshifts?view=graph-rest-beta", @@ -177782,7 +177782,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOperation", "ApiReferenceLink": null, @@ -177797,7 +177797,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOperation", "ApiReferenceLink": null, @@ -177826,7 +177826,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOwner", "ApiReferenceLink": null, @@ -177841,7 +177841,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOwner", "ApiReferenceLink": null, @@ -177870,7 +177870,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOwnerMailboxSetting", "ApiReferenceLink": null, @@ -177885,7 +177885,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamOwnerServiceProvisioningError", "ApiReferenceLink": null, @@ -177914,7 +177914,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPermissionGrant", "ApiReferenceLink": null, @@ -177929,7 +177929,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPermissionGrant", "ApiReferenceLink": null, @@ -178120,7 +178120,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPhoto", "ApiReferenceLink": null, @@ -178150,7 +178150,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannel", "ApiReferenceLink": null, @@ -178206,7 +178206,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelFileFolder", "ApiReferenceLink": null, @@ -178251,7 +178251,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -178266,7 +178266,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -178295,7 +178295,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -178310,7 +178310,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -178339,7 +178339,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -178354,7 +178354,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -178371,7 +178371,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -178400,7 +178400,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -178415,7 +178415,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -178444,7 +178444,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -178459,7 +178459,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -178476,7 +178476,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -178505,7 +178505,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -178522,7 +178522,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -178536,7 +178536,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -178551,7 +178551,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -178595,7 +178595,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -178610,7 +178610,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -178639,7 +178639,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelTabTeamApp", "ApiReferenceLink": null, @@ -178654,7 +178654,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamSchedule", "ApiReferenceLink": null, @@ -178702,7 +178702,7 @@ "OutputType": "IMicrosoftGraphSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleDayNote", "ApiReferenceLink": null, @@ -178734,7 +178734,7 @@ "OutputType": "IMicrosoftGraphDayNote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleDayNote", "ApiReferenceLink": null, @@ -178797,7 +178797,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -178845,7 +178845,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -178908,7 +178908,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -178956,7 +178956,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -179003,7 +179003,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -179051,7 +179051,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -179480,7 +179480,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -179520,7 +179520,7 @@ "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition", "ApiReferenceLink": null, @@ -179599,7 +179599,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -179614,7 +179614,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -179709,7 +179709,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -179741,7 +179741,7 @@ "OutputType": "IMicrosoftGraphTimeCard" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamScheduleTimeCard", "ApiReferenceLink": null, @@ -180233,7 +180233,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamShift", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-getshifts?view=graph-rest-beta", @@ -180320,7 +180320,7 @@ "OutputType": "IMicrosoftGraphShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamTag", "ApiReferenceLink": null, @@ -180368,7 +180368,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamTag", "ApiReferenceLink": null, @@ -180463,7 +180463,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamTagMember", "ApiReferenceLink": null, @@ -180511,7 +180511,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamTagMember", "ApiReferenceLink": null, @@ -180606,7 +180606,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamTemplate", "ApiReferenceLink": null, @@ -180621,7 +180621,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamTemplateDefinition", "ApiReferenceLink": null, @@ -180636,7 +180636,7 @@ "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamTimeOff", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-gettimesoff?view=graph-rest-beta", @@ -180723,7 +180723,7 @@ "OutputType": "IMicrosoftGraphTimeOff" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamwork", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-get?view=graph-rest-beta", @@ -180737,7 +180737,7 @@ "OutputType": "IMicrosoftGraphTeamwork" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedChat", "ApiReferenceLink": null, @@ -180752,7 +180752,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedChat", "ApiReferenceLink": null, @@ -180780,7 +180780,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -180795,7 +180795,7 @@ "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -180809,7 +180809,7 @@ "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -180824,7 +180824,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -180853,7 +180853,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolder", "ApiReferenceLink": null, @@ -180898,7 +180898,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -180913,7 +180913,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -180942,7 +180942,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -180959,7 +180959,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -180988,7 +180988,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -181003,7 +181003,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -181020,7 +181020,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -181049,7 +181049,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -181064,7 +181064,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -181093,7 +181093,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -181108,7 +181108,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -181125,7 +181125,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -181154,7 +181154,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelRetainedMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-getallretainedmessages?view=graph-rest-beta", @@ -181169,7 +181169,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -181186,7 +181186,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -181200,7 +181200,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -181215,7 +181215,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -181259,7 +181259,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -181274,7 +181274,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -181303,7 +181303,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelTabTeamApp", "ApiReferenceLink": null, @@ -181332,7 +181332,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDevice", "ApiReferenceLink": null, @@ -181364,7 +181364,7 @@ "OutputType": "IMicrosoftGraphTeamworkDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDevice", "ApiReferenceLink": null, @@ -181395,7 +181395,7 @@ "OutputType": "IMicrosoftGraphTeamworkDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeviceActivity", "ApiReferenceLink": null, @@ -181427,7 +181427,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeviceConfiguration", "ApiReferenceLink": null, @@ -181490,7 +181490,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeviceHealth", "ApiReferenceLink": null, @@ -181522,7 +181522,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceHealth" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeviceOperation", "ApiReferenceLink": null, @@ -181554,7 +181554,7 @@ "OutputType": "IMicrosoftGraphTeamworkDeviceOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkDeviceOperation", "ApiReferenceLink": null, @@ -181617,7 +181617,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkTeamAppSetting", "ApiReferenceLink": null, @@ -181648,7 +181648,7 @@ "OutputType": "IMicrosoftGraphTeamsAppSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkTeamTemplate", "ApiReferenceLink": null, @@ -181663,7 +181663,7 @@ "OutputType": "IMicrosoftGraphTeamTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkTeamTemplate", "ApiReferenceLink": null, @@ -181725,7 +181725,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkTeamTemplateDefinition", "ApiReferenceLink": null, @@ -181757,7 +181757,7 @@ "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkTeamTemplateDefinition", "ApiReferenceLink": null, @@ -181786,7 +181786,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -181818,7 +181818,7 @@ "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -181880,7 +181880,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -181912,7 +181912,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -181974,7 +181974,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -181989,7 +181989,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -182052,7 +182052,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -182084,7 +182084,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -182115,7 +182115,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -182147,7 +182147,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -182241,7 +182241,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -182273,7 +182273,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -182336,7 +182336,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -182368,7 +182368,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -182431,7 +182431,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenant", "ApiReferenceLink": null, @@ -182463,7 +182463,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenant", "ApiReferenceLink": null, @@ -182494,7 +182494,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", "ApiReferenceLink": null, @@ -182509,7 +182509,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", "ApiReferenceLink": null, @@ -182571,7 +182571,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlert", "ApiReferenceLink": null, @@ -182586,7 +182586,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlert", "ApiReferenceLink": null, @@ -182600,7 +182600,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotification", "ApiReferenceLink": null, @@ -182615,7 +182615,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotification", "ApiReferenceLink": null, @@ -182658,7 +182658,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotification", "ApiReferenceLink": null, @@ -182673,7 +182673,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotification", "ApiReferenceLink": null, @@ -182702,7 +182702,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLog", "ApiReferenceLink": null, @@ -182719,7 +182719,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLog", "ApiReferenceLink": null, @@ -182734,7 +182734,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLogAlert", "ApiReferenceLink": null, @@ -182765,7 +182765,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRule", "ApiReferenceLink": null, @@ -182782,7 +182782,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRule", "ApiReferenceLink": null, @@ -182796,7 +182796,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlert", "ApiReferenceLink": null, @@ -182811,7 +182811,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlert", "ApiReferenceLink": null, @@ -182854,7 +182854,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", "ApiReferenceLink": null, @@ -182871,7 +182871,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", "ApiReferenceLink": null, @@ -182885,7 +182885,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRule", "ApiReferenceLink": null, @@ -182900,7 +182900,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRule", "ApiReferenceLink": null, @@ -182943,7 +182943,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotification", "ApiReferenceLink": null, @@ -182958,7 +182958,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotification", "ApiReferenceLink": null, @@ -182972,7 +182972,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotificationAlert", "ApiReferenceLink": null, @@ -183001,7 +183001,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformance", "ApiReferenceLink": null, @@ -183016,7 +183016,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformance", "ApiReferenceLink": null, @@ -183044,7 +183044,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEvent", "ApiReferenceLink": null, @@ -183076,7 +183076,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEvent", "ApiReferenceLink": null, @@ -183104,7 +183104,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection", "ApiReferenceLink": null, @@ -183136,7 +183136,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection", "ApiReferenceLink": null, @@ -183198,7 +183198,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice", "ApiReferenceLink": null, @@ -183230,7 +183230,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice", "ApiReferenceLink": null, @@ -183292,7 +183292,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview", "ApiReferenceLink": null, @@ -183324,7 +183324,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview", "ApiReferenceLink": null, @@ -183386,7 +183386,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", "ApiReferenceLink": null, @@ -183426,7 +183426,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", "ApiReferenceLink": null, @@ -183535,7 +183535,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", "ApiReferenceLink": null, @@ -183550,7 +183550,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", "ApiReferenceLink": null, @@ -183578,7 +183578,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation", "ApiReferenceLink": null, @@ -183610,7 +183610,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation", "ApiReferenceLink": null, @@ -183672,7 +183672,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation", "ApiReferenceLink": null, @@ -183704,7 +183704,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation", "ApiReferenceLink": null, @@ -183766,7 +183766,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", "ApiReferenceLink": null, @@ -183781,7 +183781,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", "ApiReferenceLink": null, @@ -183809,7 +183809,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -183841,7 +183841,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -183903,7 +183903,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", "ApiReferenceLink": null, @@ -183918,7 +183918,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", "ApiReferenceLink": null, @@ -183946,7 +183946,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantEmailNotification", "ApiReferenceLink": null, @@ -183961,7 +183961,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantEmailNotification", "ApiReferenceLink": null, @@ -183975,7 +183975,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantEmailNotificationAlert", "ApiReferenceLink": null, @@ -184004,7 +184004,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantGroup", "ApiReferenceLink": null, @@ -184036,7 +184036,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantGroup", "ApiReferenceLink": null, @@ -184098,7 +184098,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", "ApiReferenceLink": null, @@ -184130,7 +184130,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", "ApiReferenceLink": null, @@ -184192,7 +184192,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", "ApiReferenceLink": null, @@ -184224,7 +184224,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", "ApiReferenceLink": null, @@ -184286,7 +184286,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementAction", "ApiReferenceLink": null, @@ -184318,7 +184318,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementAction", "ApiReferenceLink": null, @@ -184380,7 +184380,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", "ApiReferenceLink": null, @@ -184412,7 +184412,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", "ApiReferenceLink": null, @@ -184474,7 +184474,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementIntent", "ApiReferenceLink": null, @@ -184506,7 +184506,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementIntent", "ApiReferenceLink": null, @@ -184568,7 +184568,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplate", "ApiReferenceLink": null, @@ -184600,7 +184600,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplate", "ApiReferenceLink": null, @@ -184631,7 +184631,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", "ApiReferenceLink": null, @@ -184648,7 +184648,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", "ApiReferenceLink": null, @@ -184679,7 +184679,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionManagementTemplate", "ApiReferenceLink": null, @@ -184694,7 +184694,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionManagementTemplate", "ApiReferenceLink": null, @@ -184723,7 +184723,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", "ApiReferenceLink": null, @@ -184738,7 +184738,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", "ApiReferenceLink": null, @@ -184797,7 +184797,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", "ApiReferenceLink": null, @@ -184814,7 +184814,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", "ApiReferenceLink": null, @@ -184829,7 +184829,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepAcceptedVersion", "ApiReferenceLink": null, @@ -184860,7 +184860,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepManagementTemplate", "ApiReferenceLink": null, @@ -184875,7 +184875,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", "ApiReferenceLink": null, @@ -184890,7 +184890,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", "ApiReferenceLink": null, @@ -184918,7 +184918,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", "ApiReferenceLink": null, @@ -184935,7 +184935,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", "ApiReferenceLink": null, @@ -184950,7 +184950,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionAcceptedFor", "ApiReferenceLink": null, @@ -184981,7 +184981,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", "ApiReferenceLink": null, @@ -184996,7 +184996,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", "ApiReferenceLink": null, @@ -185025,7 +185025,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeploymentTemplateStepVersion", "ApiReferenceLink": null, @@ -185040,7 +185040,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionTemplateStep", "ApiReferenceLink": null, @@ -185055,7 +185055,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantMyRole", "ApiReferenceLink": null, @@ -185070,7 +185070,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsMyRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantMyRole", "ApiReferenceLink": null, @@ -185132,7 +185132,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantTag", "ApiReferenceLink": null, @@ -185164,7 +185164,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantTag", "ApiReferenceLink": null, @@ -185226,7 +185226,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", "ApiReferenceLink": null, @@ -185241,7 +185241,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", "ApiReferenceLink": null, @@ -185269,7 +185269,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", "ApiReferenceLink": null, @@ -185301,7 +185301,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", "ApiReferenceLink": null, @@ -185363,7 +185363,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", "ApiReferenceLink": null, @@ -185395,7 +185395,7 @@ "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", "ApiReferenceLink": null, @@ -185457,7 +185457,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganization", "ApiReferenceLink": null, @@ -185496,7 +185496,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationJoinRequest", "ApiReferenceLink": null, @@ -185527,7 +185527,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -185542,7 +185542,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -185620,7 +185620,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTrustFramework", "ApiReferenceLink": null, @@ -185634,7 +185634,7 @@ "OutputType": "IMicrosoftGraphTrustFramework" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTrustFrameworkKeySet", "ApiReferenceLink": null, @@ -185666,7 +185666,7 @@ "OutputType": "IMicrosoftGraphTrustFrameworkKeySet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTrustFrameworkKeySet", "ApiReferenceLink": null, @@ -185760,7 +185760,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTrustFrameworkPolicy", "ApiReferenceLink": null, @@ -185792,7 +185792,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaTrustFrameworkPolicy", "ApiReferenceLink": null, @@ -185886,7 +185886,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-get?view=graph-rest-beta", @@ -186022,7 +186022,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-list?view=graph-rest-beta", @@ -186141,7 +186141,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserActivity", "ApiReferenceLink": null, @@ -186156,7 +186156,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserActivity", "ApiReferenceLink": null, @@ -186185,7 +186185,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserActivityHistoryItem", "ApiReferenceLink": null, @@ -186200,7 +186200,7 @@ "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserActivityHistoryItem", "ApiReferenceLink": null, @@ -186214,7 +186214,7 @@ "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserActivityHistoryItemActivity", "ApiReferenceLink": null, @@ -186244,7 +186244,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserActivityStatistics", "ApiReferenceLink": null, @@ -186259,7 +186259,7 @@ "OutputType": "IMicrosoftGraphActivityStatistics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserActivityStatistics", "ApiReferenceLink": null, @@ -186273,7 +186273,7 @@ "OutputType": "IMicrosoftGraphActivityStatistics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAgreementAcceptance", "ApiReferenceLink": null, @@ -186288,7 +186288,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAgreementAcceptance", "ApiReferenceLink": null, @@ -186366,7 +186366,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAppRoleAssignedResource", "ApiReferenceLink": null, @@ -186381,7 +186381,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAppRoleAssignedResource", "ApiReferenceLink": null, @@ -186412,7 +186412,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAppRoleAssignedResourceByAppId", "ApiReferenceLink": null, @@ -186476,7 +186476,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAppRoleAssignment", "ApiReferenceLink": null, @@ -186491,7 +186491,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAppRoleAssignment", "ApiReferenceLink": null, @@ -186554,7 +186554,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -186602,7 +186602,7 @@ "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -186697,7 +186697,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationFido2Method", "ApiReferenceLink": null, @@ -186745,7 +186745,7 @@ "OutputType": "IMicrosoftGraphFido2AuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationFido2Method", "ApiReferenceLink": null, @@ -186840,7 +186840,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMethod", "ApiReferenceLink": null, @@ -186888,7 +186888,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMethod", "ApiReferenceLink": null, @@ -186983,7 +186983,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMicrosoftAuthenticatorMethod", "ApiReferenceLink": null, @@ -187031,7 +187031,7 @@ "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMicrosoftAuthenticatorMethod", "ApiReferenceLink": null, @@ -187126,7 +187126,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMicrosoftAuthenticatorMethodDevice", "ApiReferenceLink": null, @@ -187141,7 +187141,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationOperation", "ApiReferenceLink": null, @@ -187189,7 +187189,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationOperation", "ApiReferenceLink": null, @@ -187218,7 +187218,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "ApiReferenceLink": null, @@ -187266,7 +187266,7 @@ "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "ApiReferenceLink": null, @@ -187361,7 +187361,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice", "ApiReferenceLink": null, @@ -187376,7 +187376,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPasswordMethod", "ApiReferenceLink": null, @@ -187424,7 +187424,7 @@ "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPasswordMethod", "ApiReferenceLink": null, @@ -187519,7 +187519,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -187567,7 +187567,7 @@ "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -187662,7 +187662,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPlatformCredentialMethod", "ApiReferenceLink": null, @@ -187677,7 +187677,7 @@ "OutputType": "IMicrosoftGraphPlatformCredentialAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPlatformCredentialMethod", "ApiReferenceLink": null, @@ -187706,7 +187706,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPlatformCredentialMethodDevice", "ApiReferenceLink": null, @@ -187721,7 +187721,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationSignInPreference", "ApiReferenceLink": null, @@ -187736,7 +187736,7 @@ "OutputType": "IMicrosoftGraphSignInPreferences" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationSoftwareOathMethod", "ApiReferenceLink": null, @@ -187784,7 +187784,7 @@ "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationSoftwareOathMethod", "ApiReferenceLink": null, @@ -187879,7 +187879,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationTemporaryAccessPassMethod", "ApiReferenceLink": null, @@ -187927,7 +187927,7 @@ "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationTemporaryAccessPassMethod", "ApiReferenceLink": null, @@ -188022,7 +188022,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethod", "ApiReferenceLink": null, @@ -188070,7 +188070,7 @@ "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethod", "ApiReferenceLink": null, @@ -188165,7 +188165,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethodDevice", "ApiReferenceLink": null, @@ -188195,7 +188195,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCalendar", "ApiReferenceLink": null, @@ -188210,7 +188210,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCalendar", "ApiReferenceLink": null, @@ -188305,7 +188305,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCalendarEvent", "ApiReferenceLink": null, @@ -188344,7 +188344,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCalendarEventDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", @@ -188650,7 +188650,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChat", "ApiReferenceLink": null, @@ -188746,7 +188746,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChat", "ApiReferenceLink": null, @@ -188857,7 +188857,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatInstalledApp", "ApiReferenceLink": null, @@ -188872,7 +188872,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatInstalledApp", "ApiReferenceLink": null, @@ -188901,7 +188901,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatInstalledAppTeamApp", "ApiReferenceLink": null, @@ -188916,7 +188916,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -188931,7 +188931,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatLastMessagePreview", "ApiReferenceLink": null, @@ -188946,7 +188946,7 @@ "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMember", "ApiReferenceLink": null, @@ -189058,7 +189058,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMember", "ApiReferenceLink": null, @@ -189281,7 +189281,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessage", "ApiReferenceLink": null, @@ -189353,7 +189353,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessage", "ApiReferenceLink": null, @@ -189464,7 +189464,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -189536,7 +189536,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -189610,7 +189610,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -189753,7 +189753,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageReply", "ApiReferenceLink": null, @@ -189768,7 +189768,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageReply", "ApiReferenceLink": null, @@ -189797,7 +189797,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", @@ -189812,7 +189812,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -189829,7 +189829,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -189858,7 +189858,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatOperation", "ApiReferenceLink": null, @@ -189873,7 +189873,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatOperation", "ApiReferenceLink": null, @@ -189902,7 +189902,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatPermissionGrant", "ApiReferenceLink": null, @@ -189917,7 +189917,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatPermissionGrant", "ApiReferenceLink": null, @@ -189946,7 +189946,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatPinnedMessage", "ApiReferenceLink": null, @@ -189963,7 +189963,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatPinnedMessage", "ApiReferenceLink": null, @@ -189992,7 +189992,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatRetainedMessage", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-getallretainedmessages?view=graph-rest-beta", @@ -190024,7 +190024,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatTab", "ApiReferenceLink": null, @@ -190039,7 +190039,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatTab", "ApiReferenceLink": null, @@ -190068,7 +190068,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserChatTabTeamApp", "ApiReferenceLink": null, @@ -190145,7 +190145,7 @@ "OutputType": "IMicrosoftGraphCloudPcLaunchInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCloudPcProvisionedCloudPc", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta", @@ -190224,7 +190224,7 @@ "OutputType": "IMicrosoftGraphCloudPcRemoteActionCapability" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContact", "ApiReferenceLink": null, @@ -190256,7 +190256,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContact", "ApiReferenceLink": null, @@ -190319,7 +190319,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-beta", @@ -190351,7 +190351,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactExtension", "ApiReferenceLink": null, @@ -190366,7 +190366,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactExtension", "ApiReferenceLink": null, @@ -190395,7 +190395,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolder", "ApiReferenceLink": null, @@ -190427,7 +190427,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolder", "ApiReferenceLink": null, @@ -190458,7 +190458,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -190473,7 +190473,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -190504,7 +190504,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -190536,7 +190536,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -190599,7 +190599,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-beta", @@ -190631,7 +190631,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -190646,7 +190646,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -190737,7 +190737,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-beta", @@ -190752,7 +190752,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderContact", "ApiReferenceLink": null, @@ -190784,7 +190784,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderContact", "ApiReferenceLink": null, @@ -190847,7 +190847,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-beta", @@ -190879,7 +190879,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -190894,7 +190894,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -190985,7 +190985,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserContactFolderDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-beta", @@ -191166,7 +191166,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCreatedObject", "ApiReferenceLink": null, @@ -191181,7 +191181,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCreatedObject", "ApiReferenceLink": null, @@ -191244,7 +191244,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCreatedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -191259,7 +191259,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserCreatedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -191367,7 +191367,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDefaultCalendarEvent", "ApiReferenceLink": null, @@ -191448,7 +191448,7 @@ "OutputType": "IMicrosoftGraphScheduleInformation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDefaultDrive", "ApiReferenceLink": null, @@ -191512,7 +191512,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-delta?view=graph-rest-beta", @@ -191559,7 +191559,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDevice", "ApiReferenceLink": null, @@ -191574,7 +191574,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDevice", "ApiReferenceLink": null, @@ -191588,7 +191588,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceByDeviceId", "ApiReferenceLink": null, @@ -191603,7 +191603,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceCommand", "ApiReferenceLink": null, @@ -191618,7 +191618,7 @@ "OutputType": "IMicrosoftGraphCommand" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceCommand", "ApiReferenceLink": null, @@ -191647,7 +191647,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceCommandResponsepayload", "ApiReferenceLink": null, @@ -191677,7 +191677,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delta?view=graph-rest-beta", @@ -191692,7 +191692,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -191707,7 +191707,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -191721,7 +191721,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -191736,7 +191736,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -191780,7 +191780,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceExtension", "ApiReferenceLink": null, @@ -191795,7 +191795,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceExtension", "ApiReferenceLink": null, @@ -191824,7 +191824,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -191839,7 +191839,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -191868,7 +191868,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOf", "ApiReferenceLink": null, @@ -191883,7 +191883,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOf", "ApiReferenceLink": null, @@ -191897,7 +191897,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -191912,7 +191912,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -191926,7 +191926,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfAsGroup", "ApiReferenceLink": null, @@ -191941,7 +191941,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfAsGroup", "ApiReferenceLink": null, @@ -192000,7 +192000,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwner", "ApiReferenceLink": null, @@ -192014,7 +192014,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsEndpoint", "ApiReferenceLink": null, @@ -192029,7 +192029,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsEndpoint", "ApiReferenceLink": null, @@ -192043,7 +192043,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -192058,7 +192058,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -192072,7 +192072,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsUser", "ApiReferenceLink": null, @@ -192087,7 +192087,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsUser", "ApiReferenceLink": null, @@ -192175,7 +192175,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUser", "ApiReferenceLink": null, @@ -192189,7 +192189,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsEndpoint", "ApiReferenceLink": null, @@ -192204,7 +192204,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsEndpoint", "ApiReferenceLink": null, @@ -192218,7 +192218,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsServicePrincipal", "ApiReferenceLink": null, @@ -192233,7 +192233,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsServicePrincipal", "ApiReferenceLink": null, @@ -192247,7 +192247,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsUser", "ApiReferenceLink": null, @@ -192262,7 +192262,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsUser", "ApiReferenceLink": null, @@ -192350,7 +192350,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOf", "ApiReferenceLink": null, @@ -192365,7 +192365,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOf", "ApiReferenceLink": null, @@ -192379,7 +192379,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -192394,7 +192394,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -192408,7 +192408,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -192423,7 +192423,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -192482,7 +192482,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceUsageRights", "ApiReferenceLink": null, @@ -192497,7 +192497,7 @@ "OutputType": "IMicrosoftGraphUsageRight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDeviceUsageRights", "ApiReferenceLink": null, @@ -192526,7 +192526,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDirectReport", "ApiReferenceLink": null, @@ -192541,7 +192541,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDirectReport", "ApiReferenceLink": null, @@ -192596,7 +192596,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDirectReportAsOrgContact", "ApiReferenceLink": null, @@ -192611,7 +192611,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDirectReportAsOrgContact", "ApiReferenceLink": null, @@ -192625,7 +192625,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDirectReportAsUser", "ApiReferenceLink": null, @@ -192640,7 +192640,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDirectReportAsUser", "ApiReferenceLink": null, @@ -192740,7 +192740,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDrive", "ApiReferenceLink": null, @@ -192755,7 +192755,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDrive", "ApiReferenceLink": null, @@ -192818,7 +192818,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveActivity", "ApiReferenceLink": null, @@ -192832,7 +192832,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveBundle", "ApiReferenceLink": null, @@ -192847,7 +192847,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveBundle", "ApiReferenceLink": null, @@ -192906,7 +192906,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveContentTypeBase", "ApiReferenceLink": null, @@ -192921,7 +192921,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -192936,7 +192936,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -193029,7 +193029,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveCreatedByUser", "ApiReferenceLink": null, @@ -193044,7 +193044,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -193059,7 +193059,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -193088,7 +193088,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveFollowing", "ApiReferenceLink": null, @@ -193103,7 +193103,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveFollowing", "ApiReferenceLink": null, @@ -193162,7 +193162,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItem", "ApiReferenceLink": null, @@ -193177,7 +193177,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItem", "ApiReferenceLink": null, @@ -193191,7 +193191,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemActivity", "ApiReferenceLink": null, @@ -193205,7 +193205,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", @@ -193220,7 +193220,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalytic", "ApiReferenceLink": null, @@ -193235,7 +193235,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -193250,7 +193250,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -193264,7 +193264,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -193293,7 +193293,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -193308,7 +193308,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticTime", "ApiReferenceLink": null, @@ -193323,7 +193323,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemChild", "ApiReferenceLink": null, @@ -193338,7 +193338,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemChild", "ApiReferenceLink": null, @@ -193442,7 +193442,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemCreatedByUser", "ApiReferenceLink": null, @@ -193457,7 +193457,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -193472,7 +193472,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -193501,7 +193501,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", @@ -193518,7 +193518,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemItemLastModifiedByUser", "ApiReferenceLink": null, @@ -193533,7 +193533,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -193548,7 +193548,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -193577,7 +193577,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemLastModifiedByUser", "ApiReferenceLink": null, @@ -193594,7 +193594,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -193611,7 +193611,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -193643,7 +193643,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItem", "ApiReferenceLink": null, @@ -193658,7 +193658,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemActivity", "ApiReferenceLink": null, @@ -193672,7 +193672,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemActivityByInterval", "ApiReferenceLink": null, @@ -193687,7 +193687,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemAnalytic", "ApiReferenceLink": null, @@ -193702,7 +193702,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemCreatedByUser", "ApiReferenceLink": null, @@ -193717,7 +193717,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -193732,7 +193732,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -193761,7 +193761,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -193776,7 +193776,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -193805,7 +193805,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -193820,7 +193820,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDriveItem", "ApiReferenceLink": null, @@ -193865,7 +193865,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemField", "ApiReferenceLink": null, @@ -193880,7 +193880,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -193895,7 +193895,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -193924,7 +193924,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -193939,7 +193939,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemPermission", "ApiReferenceLink": null, @@ -193954,7 +193954,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemPermission", "ApiReferenceLink": null, @@ -193983,7 +193983,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -193998,7 +193998,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemSubscription", "ApiReferenceLink": null, @@ -194013,7 +194013,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemSubscription", "ApiReferenceLink": null, @@ -194042,7 +194042,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -194057,7 +194057,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -194086,7 +194086,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemVersion", "ApiReferenceLink": null, @@ -194101,7 +194101,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveItemVersion", "ApiReferenceLink": null, @@ -194145,7 +194145,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveLastModifiedByUser", "ApiReferenceLink": null, @@ -194162,7 +194162,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -194179,7 +194179,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -194211,7 +194211,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveList", "ApiReferenceLink": null, @@ -194226,7 +194226,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListActivity", "ApiReferenceLink": null, @@ -194240,7 +194240,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListColumn", "ApiReferenceLink": null, @@ -194255,7 +194255,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListColumn", "ApiReferenceLink": null, @@ -194284,7 +194284,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListColumnSourceColumn", "ApiReferenceLink": null, @@ -194299,7 +194299,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentType", "ApiReferenceLink": null, @@ -194314,7 +194314,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentType", "ApiReferenceLink": null, @@ -194328,7 +194328,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -194343,7 +194343,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -194372,7 +194372,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -194387,7 +194387,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -194416,7 +194416,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -194431,7 +194431,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -194460,7 +194460,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -194475,7 +194475,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", @@ -194505,7 +194505,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListCreatedByUser", "ApiReferenceLink": null, @@ -194520,7 +194520,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -194535,7 +194535,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -194564,7 +194564,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListDrive", "ApiReferenceLink": null, @@ -194579,7 +194579,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItem", "ApiReferenceLink": null, @@ -194594,7 +194594,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItem", "ApiReferenceLink": null, @@ -194608,7 +194608,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemActivity", "ApiReferenceLink": null, @@ -194622,7 +194622,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemActivityByInterval", "ApiReferenceLink": null, @@ -194637,7 +194637,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemAnalytic", "ApiReferenceLink": null, @@ -194652,7 +194652,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemCreatedByUser", "ApiReferenceLink": null, @@ -194667,7 +194667,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -194682,7 +194682,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -194711,7 +194711,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", @@ -194728,7 +194728,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -194743,7 +194743,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -194772,7 +194772,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -194787,7 +194787,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDriveItem", "ApiReferenceLink": null, @@ -194832,7 +194832,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemField", "ApiReferenceLink": null, @@ -194847,7 +194847,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemVersion", "ApiReferenceLink": null, @@ -194862,7 +194862,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemVersion", "ApiReferenceLink": null, @@ -194891,7 +194891,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListItemVersionField", "ApiReferenceLink": null, @@ -194906,7 +194906,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListOperation", "ApiReferenceLink": null, @@ -194921,7 +194921,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListOperation", "ApiReferenceLink": null, @@ -194950,7 +194950,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListSubscription", "ApiReferenceLink": null, @@ -194965,7 +194965,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveListSubscription", "ApiReferenceLink": null, @@ -194994,7 +194994,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRoot", "ApiReferenceLink": null, @@ -195009,7 +195009,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootActivity", "ApiReferenceLink": null, @@ -195023,7 +195023,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", @@ -195038,7 +195038,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalytic", "ApiReferenceLink": null, @@ -195053,7 +195053,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -195068,7 +195068,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -195082,7 +195082,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -195111,7 +195111,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -195126,7 +195126,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticTime", "ApiReferenceLink": null, @@ -195141,7 +195141,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootChild", "ApiReferenceLink": null, @@ -195156,7 +195156,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootChild", "ApiReferenceLink": null, @@ -195245,7 +195245,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootCreatedByUser", "ApiReferenceLink": null, @@ -195260,7 +195260,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -195275,7 +195275,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -195304,7 +195304,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", @@ -195321,7 +195321,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootItemLastModifiedByUser", "ApiReferenceLink": null, @@ -195336,7 +195336,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -195351,7 +195351,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -195380,7 +195380,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootLastModifiedByUser", "ApiReferenceLink": null, @@ -195395,7 +195395,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -195410,7 +195410,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -195439,7 +195439,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItem", "ApiReferenceLink": null, @@ -195454,7 +195454,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemActivity", "ApiReferenceLink": null, @@ -195468,7 +195468,7 @@ "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemActivityByInterval", "ApiReferenceLink": null, @@ -195483,7 +195483,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemAnalytic", "ApiReferenceLink": null, @@ -195498,7 +195498,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemCreatedByUser", "ApiReferenceLink": null, @@ -195513,7 +195513,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -195528,7 +195528,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -195557,7 +195557,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -195572,7 +195572,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -195601,7 +195601,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -195616,7 +195616,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDriveItem", "ApiReferenceLink": null, @@ -195661,7 +195661,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemField", "ApiReferenceLink": null, @@ -195676,7 +195676,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -195691,7 +195691,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -195720,7 +195720,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -195735,7 +195735,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootPermission", "ApiReferenceLink": null, @@ -195750,7 +195750,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootPermission", "ApiReferenceLink": null, @@ -195779,7 +195779,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -195794,7 +195794,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootSubscription", "ApiReferenceLink": null, @@ -195809,7 +195809,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootSubscription", "ApiReferenceLink": null, @@ -195838,7 +195838,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -195853,7 +195853,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -195882,7 +195882,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootVersion", "ApiReferenceLink": null, @@ -195897,7 +195897,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveRootVersion", "ApiReferenceLink": null, @@ -195941,7 +195941,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveSpecial", "ApiReferenceLink": null, @@ -195956,7 +195956,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserDriveSpecial", "ApiReferenceLink": null, @@ -196015,7 +196015,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEffectiveDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -196030,7 +196030,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEvent", "ApiReferenceLink": null, @@ -196062,7 +196062,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEvent", "ApiReferenceLink": null, @@ -196101,7 +196101,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventAttachment", "ApiReferenceLink": null, @@ -196116,7 +196116,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventAttachment", "ApiReferenceLink": null, @@ -196200,7 +196200,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", @@ -196240,7 +196240,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrence", "ApiReferenceLink": null, @@ -196255,7 +196255,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrence", "ApiReferenceLink": null, @@ -196269,7 +196269,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -196284,7 +196284,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -196343,7 +196343,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -196358,7 +196358,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -196416,7 +196416,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceAttachment", "ApiReferenceLink": null, @@ -196431,7 +196431,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceAttachment", "ApiReferenceLink": null, @@ -196490,7 +196490,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -196505,7 +196505,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceExtension", "ApiReferenceLink": null, @@ -196534,7 +196534,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExtension", "ApiReferenceLink": null, @@ -196549,7 +196549,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventExtension", "ApiReferenceLink": null, @@ -196624,7 +196624,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceAttachment", "ApiReferenceLink": null, @@ -196639,7 +196639,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceAttachment", "ApiReferenceLink": null, @@ -196715,7 +196715,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", @@ -196730,7 +196730,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrence", "ApiReferenceLink": null, @@ -196745,7 +196745,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrence", "ApiReferenceLink": null, @@ -196759,7 +196759,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -196774,7 +196774,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceAttachment", "ApiReferenceLink": null, @@ -196833,7 +196833,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -196848,7 +196848,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceExtension", "ApiReferenceLink": null, @@ -196877,7 +196877,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExtension", "ApiReferenceLink": null, @@ -196892,7 +196892,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExtension", "ApiReferenceLink": null, @@ -196921,7 +196921,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserExtension", "ApiReferenceLink": null, @@ -196936,7 +196936,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserExtension", "ApiReferenceLink": null, @@ -196965,7 +196965,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserFollowedSite", "ApiReferenceLink": null, @@ -196980,7 +196980,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserFollowedSite", "ApiReferenceLink": null, @@ -197102,7 +197102,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtection", "ApiReferenceLink": null, @@ -197117,7 +197117,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionBitlocker", "ApiReferenceLink": null, @@ -197132,7 +197132,7 @@ "OutputType": "IMicrosoftGraphBitlocker" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionBitlockerRecoveryKey", "ApiReferenceLink": null, @@ -197147,7 +197147,7 @@ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionBitlockerRecoveryKey", "ApiReferenceLink": null, @@ -197176,7 +197176,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -197191,7 +197191,7 @@ "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionDataLossPreventionPolicy", "ApiReferenceLink": null, @@ -197220,7 +197220,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionPolicy", "ApiReferenceLink": null, @@ -197235,7 +197235,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -197267,7 +197267,7 @@ "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionPolicyLabel", "ApiReferenceLink": null, @@ -197330,7 +197330,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -197345,7 +197345,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -197374,7 +197374,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -197389,7 +197389,7 @@ "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabelSublabel", "ApiReferenceLink": null, @@ -197418,7 +197418,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityPolicySetting", "ApiReferenceLink": null, @@ -197433,7 +197433,7 @@ "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -197448,7 +197448,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -197477,7 +197477,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -197492,7 +197492,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -197521,7 +197521,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsight", "ApiReferenceLink": null, @@ -197536,7 +197536,7 @@ "OutputType": "IMicrosoftGraphItemInsights" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightShared", "ApiReferenceLink": null, @@ -197551,7 +197551,7 @@ "OutputType": "IMicrosoftGraphSharedInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightShared", "ApiReferenceLink": null, @@ -197614,7 +197614,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightSharedLastSharedMethod", "ApiReferenceLink": null, @@ -197629,7 +197629,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightSharedResource", "ApiReferenceLink": null, @@ -197644,7 +197644,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightTrending", "ApiReferenceLink": null, @@ -197659,7 +197659,7 @@ "OutputType": "IMicrosoftGraphTrending" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightTrending", "ApiReferenceLink": null, @@ -197722,7 +197722,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightTrendingResource", "ApiReferenceLink": null, @@ -197754,7 +197754,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightUsed", "ApiReferenceLink": null, @@ -197769,7 +197769,7 @@ "OutputType": "IMicrosoftGraphUsedInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightUsed", "ApiReferenceLink": null, @@ -197832,7 +197832,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInsightUsedResource", "ApiReferenceLink": null, @@ -197864,7 +197864,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserInvitedBy", "ApiReferenceLink": null, @@ -197893,7 +197893,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserJoinedTeam", "ApiReferenceLink": null, @@ -197964,7 +197964,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserLicenseDetail", "ApiReferenceLink": null, @@ -197979,7 +197979,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserLicenseDetail", "ApiReferenceLink": null, @@ -198138,7 +198138,7 @@ "OutputType": "IMicrosoftGraphTeamsLicensingDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserLoggedOnManagedDevice", "ApiReferenceLink": null, @@ -198153,7 +198153,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailboxSetting", "ApiReferenceLink": null, @@ -198185,7 +198185,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolder", "ApiReferenceLink": null, @@ -198233,7 +198233,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolder", "ApiReferenceLink": null, @@ -198280,7 +198280,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -198295,7 +198295,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -198390,7 +198390,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-beta", @@ -198405,7 +198405,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -198420,7 +198420,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -198434,7 +198434,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageAttachment", "ApiReferenceLink": null, @@ -198449,7 +198449,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageAttachment", "ApiReferenceLink": null, @@ -198508,7 +198508,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-beta", @@ -198523,7 +198523,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -198538,7 +198538,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -198567,7 +198567,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageMention", "ApiReferenceLink": null, @@ -198582,7 +198582,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageMention", "ApiReferenceLink": null, @@ -198747,7 +198747,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-beta", @@ -198795,7 +198795,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessage", "ApiReferenceLink": null, @@ -198835,7 +198835,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessage", "ApiReferenceLink": null, @@ -198882,7 +198882,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageAttachment", "ApiReferenceLink": null, @@ -198897,7 +198897,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageAttachment", "ApiReferenceLink": null, @@ -199014,7 +199014,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-beta", @@ -199062,7 +199062,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -199077,7 +199077,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -199106,7 +199106,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageMention", "ApiReferenceLink": null, @@ -199121,7 +199121,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageMention", "ApiReferenceLink": null, @@ -199351,7 +199351,7 @@ "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedAppPolicy", "ApiReferenceLink": null, @@ -199383,7 +199383,7 @@ "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedAppRegistration", "ApiReferenceLink": null, @@ -199398,7 +199398,7 @@ "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedAppRegistration", "ApiReferenceLink": null, @@ -199427,7 +199427,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDevice", "ApiReferenceLink": null, @@ -199442,7 +199442,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDevice", "ApiReferenceLink": null, @@ -199456,7 +199456,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -199471,7 +199471,7 @@ "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "ApiReferenceLink": null, @@ -199500,7 +199500,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCategory", "ApiReferenceLink": null, @@ -199545,7 +199545,7 @@ "OutputType": "IMicrosoftGraphCloudPcReviewStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -199560,7 +199560,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -199589,7 +199589,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -199604,7 +199604,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -199648,7 +199648,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceDetectedApp", "ApiReferenceLink": null, @@ -199663,7 +199663,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceDetectedApp", "ApiReferenceLink": null, @@ -199707,7 +199707,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -199722,7 +199722,7 @@ "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceHealthScriptState", "ApiReferenceLink": null, @@ -199766,7 +199766,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -199781,7 +199781,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -199795,7 +199795,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -199810,7 +199810,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceMobileAppConfigurationState", "ApiReferenceLink": null, @@ -199854,7 +199854,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -199869,7 +199869,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineState", "ApiReferenceLink": null, @@ -199898,7 +199898,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -199913,7 +199913,7 @@ "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", "ApiReferenceLink": null, @@ -199942,7 +199942,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceUser", "ApiReferenceLink": null, @@ -199956,7 +199956,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -199971,7 +199971,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -199986,7 +199986,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -200079,7 +200079,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceSummarizedAppState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserManager", "ApiReferenceLink": null, @@ -200387,7 +200387,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOf", "ApiReferenceLink": null, @@ -200419,7 +200419,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOf", "ApiReferenceLink": null, @@ -200466,7 +200466,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -200481,7 +200481,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -200512,7 +200512,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -200527,7 +200527,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -200558,7 +200558,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfAsGroup", "ApiReferenceLink": null, @@ -200573,7 +200573,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMemberOfAsGroup", "ApiReferenceLink": null, @@ -200748,7 +200748,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessage", "ApiReferenceLink": null, @@ -200788,7 +200788,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessage", "ApiReferenceLink": null, @@ -200835,7 +200835,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageAttachment", "ApiReferenceLink": null, @@ -200850,7 +200850,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageAttachment", "ApiReferenceLink": null, @@ -200967,7 +200967,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-beta", @@ -201007,7 +201007,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageExtension", "ApiReferenceLink": null, @@ -201022,7 +201022,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageExtension", "ApiReferenceLink": null, @@ -201051,7 +201051,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageMention", "ApiReferenceLink": null, @@ -201066,7 +201066,7 @@ "OutputType": "IMicrosoftGraphMention" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMessageMention", "ApiReferenceLink": null, @@ -201095,7 +201095,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMobileAppIntentAndState", "ApiReferenceLink": null, @@ -201127,7 +201127,7 @@ "OutputType": "IMicrosoftGraphMobileAppIntentAndState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMobileAppIntentAndState", "ApiReferenceLink": null, @@ -201190,7 +201190,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -201205,7 +201205,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -201219,7 +201219,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -201234,7 +201234,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -201278,7 +201278,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserNotification", "ApiReferenceLink": null, @@ -201293,7 +201293,7 @@ "OutputType": "IMicrosoftGraphNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserNotification", "ApiReferenceLink": null, @@ -201322,7 +201322,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOauth2PermissionGrant", "ApiReferenceLink": null, @@ -201337,7 +201337,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOauth2PermissionGrant", "ApiReferenceLink": null, @@ -201400,7 +201400,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteNotebook", "ApiReferenceLink": null, @@ -201456,7 +201456,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteNotebook", "ApiReferenceLink": null, @@ -201625,7 +201625,7 @@ "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteNotebookSection", "ApiReferenceLink": null, @@ -201680,7 +201680,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -201735,7 +201735,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteOperation", "ApiReferenceLink": null, @@ -201806,7 +201806,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenotePage", "ApiReferenceLink": null, @@ -201854,7 +201854,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenotePage", "ApiReferenceLink": null, @@ -202053,7 +202053,7 @@ "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteResource", "ApiReferenceLink": null, @@ -202131,7 +202131,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteSection", "ApiReferenceLink": null, @@ -202187,7 +202187,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteSection", "ApiReferenceLink": null, @@ -202298,7 +202298,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -202354,7 +202354,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -202468,7 +202468,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -202523,7 +202523,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnenoteSectionPage", "ApiReferenceLink": null, @@ -202570,7 +202570,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeeting", "ApiReferenceLink": null, @@ -202618,7 +202618,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeeting", "ApiReferenceLink": null, @@ -202721,7 +202721,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -202738,7 +202738,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -202752,7 +202752,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -202769,7 +202769,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -202846,7 +202846,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingByJoinWebUrl", "ApiReferenceLink": null, @@ -203048,7 +203048,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -203092,7 +203092,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRecordingDelta", "ApiReferenceLink": null, @@ -203107,7 +203107,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistration", "ApiReferenceLink": null, @@ -203155,7 +203155,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -203187,7 +203187,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistrationCustomQuestion", "ApiReferenceLink": null, @@ -203216,7 +203216,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -203231,7 +203231,7 @@ "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistrationRegistrant", "ApiReferenceLink": null, @@ -203310,7 +203310,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -203325,7 +203325,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -203369,7 +203369,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscriptDelta", "ApiReferenceLink": null, @@ -203536,7 +203536,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskAttachment", "ApiReferenceLink": null, @@ -203551,7 +203551,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskAttachment", "ApiReferenceLink": null, @@ -203668,7 +203668,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTaskAttachment", "ApiReferenceLink": null, @@ -203683,7 +203683,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTaskAttachment", "ApiReferenceLink": null, @@ -203844,7 +203844,7 @@ "OutputType": "IMicrosoftGraphOutlookTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachment", "ApiReferenceLink": null, @@ -203859,7 +203859,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachment", "ApiReferenceLink": null, @@ -203903,7 +203903,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedDevice", "ApiReferenceLink": null, @@ -203918,7 +203918,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedDevice", "ApiReferenceLink": null, @@ -203973,7 +203973,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceAsDevice", "ApiReferenceLink": null, @@ -203988,7 +203988,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceAsDevice", "ApiReferenceLink": null, @@ -204002,7 +204002,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceAsEndpoint", "ApiReferenceLink": null, @@ -204017,7 +204017,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceAsEndpoint", "ApiReferenceLink": null, @@ -204117,7 +204117,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObject", "ApiReferenceLink": null, @@ -204132,7 +204132,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObject", "ApiReferenceLink": null, @@ -204187,7 +204187,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsApplication", "ApiReferenceLink": null, @@ -204202,7 +204202,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsApplication", "ApiReferenceLink": null, @@ -204216,7 +204216,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsGroup", "ApiReferenceLink": null, @@ -204231,7 +204231,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsGroup", "ApiReferenceLink": null, @@ -204245,7 +204245,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -204260,7 +204260,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -204679,7 +204679,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlanner", "ApiReferenceLink": null, @@ -204737,7 +204737,7 @@ "OutputType": "IMicrosoftGraphPlannerUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlanner", "ApiReferenceLink": null, @@ -204766,7 +204766,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerAllDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/planneruser-list-delta?view=graph-rest-beta", @@ -204814,7 +204814,7 @@ "OutputType": "IMicrosoftGraphPlannerDelta" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerFavoritePlan", "ApiReferenceLink": null, @@ -204829,7 +204829,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerFavoritePlan", "ApiReferenceLink": null, @@ -204908,7 +204908,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerMyDayTask", "ApiReferenceLink": null, @@ -204923,7 +204923,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerMyDayTask", "ApiReferenceLink": null, @@ -205018,7 +205018,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerPlan", "ApiReferenceLink": null, @@ -205065,7 +205065,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerPlanBucketDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-delta?view=graph-rest-beta", @@ -205080,7 +205080,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerPlanBucketTaskDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", @@ -205095,7 +205095,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerPlanDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-delta?view=graph-rest-beta", @@ -205110,7 +205110,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerPlanTaskDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", @@ -205125,7 +205125,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerRecentPlan", "ApiReferenceLink": null, @@ -205140,7 +205140,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerRecentPlan", "ApiReferenceLink": null, @@ -205219,7 +205219,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerRosterPlan", "ApiReferenceLink": null, @@ -205234,7 +205234,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerRosterPlan", "ApiReferenceLink": null, @@ -205329,7 +205329,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerTask", "ApiReferenceLink": null, @@ -205392,7 +205392,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPlannerTaskDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", @@ -205424,7 +205424,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserPresence", "ApiReferenceLink": null, @@ -205464,7 +205464,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfile", "ApiReferenceLink": null, @@ -205520,7 +205520,7 @@ "OutputType": "IMicrosoftGraphProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAccount", "ApiReferenceLink": null, @@ -205576,7 +205576,7 @@ "OutputType": "IMicrosoftGraphUserAccountInformation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAccount", "ApiReferenceLink": null, @@ -205687,7 +205687,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAddress", "ApiReferenceLink": null, @@ -205743,7 +205743,7 @@ "OutputType": "IMicrosoftGraphItemAddress" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAddress", "ApiReferenceLink": null, @@ -205854,7 +205854,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAnniversary", "ApiReferenceLink": null, @@ -205910,7 +205910,7 @@ "OutputType": "IMicrosoftGraphPersonAnnualEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAnniversary", "ApiReferenceLink": null, @@ -206021,7 +206021,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAward", "ApiReferenceLink": null, @@ -206077,7 +206077,7 @@ "OutputType": "IMicrosoftGraphPersonAward" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileAward", "ApiReferenceLink": null, @@ -206188,7 +206188,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileCertification", "ApiReferenceLink": null, @@ -206244,7 +206244,7 @@ "OutputType": "IMicrosoftGraphPersonCertification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileCertification", "ApiReferenceLink": null, @@ -206355,7 +206355,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileEducationalActivity", "ApiReferenceLink": null, @@ -206411,7 +206411,7 @@ "OutputType": "IMicrosoftGraphEducationalActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileEducationalActivity", "ApiReferenceLink": null, @@ -206522,7 +206522,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileEmail", "ApiReferenceLink": null, @@ -206578,7 +206578,7 @@ "OutputType": "IMicrosoftGraphItemEmail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileEmail", "ApiReferenceLink": null, @@ -206689,7 +206689,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileInterest", "ApiReferenceLink": null, @@ -206745,7 +206745,7 @@ "OutputType": "IMicrosoftGraphPersonInterest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileInterest", "ApiReferenceLink": null, @@ -206856,7 +206856,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileLanguage", "ApiReferenceLink": null, @@ -206912,7 +206912,7 @@ "OutputType": "IMicrosoftGraphLanguageProficiency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileLanguage", "ApiReferenceLink": null, @@ -207023,7 +207023,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileName", "ApiReferenceLink": null, @@ -207079,7 +207079,7 @@ "OutputType": "IMicrosoftGraphPersonName" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileName", "ApiReferenceLink": null, @@ -207190,7 +207190,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileNote", "ApiReferenceLink": null, @@ -207246,7 +207246,7 @@ "OutputType": "IMicrosoftGraphPersonAnnotation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileNote", "ApiReferenceLink": null, @@ -207357,7 +207357,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePatent", "ApiReferenceLink": null, @@ -207413,7 +207413,7 @@ "OutputType": "IMicrosoftGraphItemPatent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePatent", "ApiReferenceLink": null, @@ -207524,7 +207524,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePhone", "ApiReferenceLink": null, @@ -207580,7 +207580,7 @@ "OutputType": "IMicrosoftGraphItemPhone" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePhone", "ApiReferenceLink": null, @@ -207691,7 +207691,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePosition", "ApiReferenceLink": null, @@ -207747,7 +207747,7 @@ "OutputType": "IMicrosoftGraphWorkPosition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePosition", "ApiReferenceLink": null, @@ -207858,7 +207858,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileProject", "ApiReferenceLink": null, @@ -207914,7 +207914,7 @@ "OutputType": "IMicrosoftGraphProjectParticipation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileProject", "ApiReferenceLink": null, @@ -208025,7 +208025,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePublication", "ApiReferenceLink": null, @@ -208081,7 +208081,7 @@ "OutputType": "IMicrosoftGraphItemPublication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfilePublication", "ApiReferenceLink": null, @@ -208192,7 +208192,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileSkill", "ApiReferenceLink": null, @@ -208248,7 +208248,7 @@ "OutputType": "IMicrosoftGraphSkillProficiency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileSkill", "ApiReferenceLink": null, @@ -208359,7 +208359,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileWebAccount", "ApiReferenceLink": null, @@ -208415,7 +208415,7 @@ "OutputType": "IMicrosoftGraphWebAccount" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileWebAccount", "ApiReferenceLink": null, @@ -208526,7 +208526,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileWebsite", "ApiReferenceLink": null, @@ -208582,7 +208582,7 @@ "OutputType": "IMicrosoftGraphPersonWebsite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserProfileWebsite", "ApiReferenceLink": null, @@ -208693,7 +208693,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserRegisteredDevice", "ApiReferenceLink": null, @@ -208708,7 +208708,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserRegisteredDevice", "ApiReferenceLink": null, @@ -208763,7 +208763,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceAsDevice", "ApiReferenceLink": null, @@ -208778,7 +208778,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceAsDevice", "ApiReferenceLink": null, @@ -208792,7 +208792,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceAsEndpoint", "ApiReferenceLink": null, @@ -208807,7 +208807,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceAsEndpoint", "ApiReferenceLink": null, @@ -208907,7 +208907,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -208922,7 +208922,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -208985,7 +208985,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSecurity", "ApiReferenceLink": null, @@ -209000,7 +209000,7 @@ "OutputType": "IMicrosoftGraphSecurity1" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSecurityInformationProtection", "ApiReferenceLink": null, @@ -209015,7 +209015,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSecurityInformationProtectionLabelPolicySetting", "ApiReferenceLink": null, @@ -209047,7 +209047,7 @@ "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -209079,7 +209079,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabel", "ApiReferenceLink": null, @@ -209142,7 +209142,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabelParent", "ApiReferenceLink": null, @@ -209157,7 +209157,7 @@ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSetting", "ApiReferenceLink": null, @@ -209189,7 +209189,7 @@ "OutputType": "IMicrosoftGraphUserSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingContactMergeSuggestion", "ApiReferenceLink": null, @@ -209221,7 +209221,7 @@ "OutputType": "IMicrosoftGraphContactMergeSuggestions" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingItemInsight", "ApiReferenceLink": null, @@ -209253,7 +209253,7 @@ "OutputType": "IMicrosoftGraphUserInsightsSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingRegionalAndLanguageSetting", "ApiReferenceLink": null, @@ -209268,7 +209268,7 @@ "OutputType": "IMicrosoftGraphRegionalAndLanguageSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingShiftPreference", "ApiReferenceLink": null, @@ -209316,7 +209316,7 @@ "OutputType": "IMicrosoftGraphShiftPreferences" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingStorage", "ApiReferenceLink": null, @@ -209331,7 +209331,7 @@ "OutputType": "IMicrosoftGraphUserStorage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingStorageQuota", "ApiReferenceLink": null, @@ -209379,7 +209379,7 @@ "OutputType": "IMicrosoftGraphUnifiedStorageQuota" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingStorageQuotaService", "ApiReferenceLink": null, @@ -209427,7 +209427,7 @@ "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingStorageQuotaService", "ApiReferenceLink": null, @@ -209522,7 +209522,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingWindows", "ApiReferenceLink": null, @@ -209537,7 +209537,7 @@ "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingWindows", "ApiReferenceLink": null, @@ -209566,7 +209566,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -209581,7 +209581,7 @@ "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -209610,7 +209610,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSponsor", "ApiReferenceLink": null, @@ -209625,7 +209625,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserSponsor", "ApiReferenceLink": null, @@ -209704,7 +209704,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamwork", "ApiReferenceLink": null, @@ -209736,7 +209736,7 @@ "OutputType": "IMicrosoftGraphUserTeamwork" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -209753,7 +209753,7 @@ "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -209832,7 +209832,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamworkInstalledApp", "ApiReferenceLink": null, @@ -209960,7 +209960,7 @@ "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamworkInstalledApp", "ApiReferenceLink": null, @@ -210087,7 +210087,7 @@ "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamworkInstalledAppChat", "ApiReferenceLink": null, @@ -210295,7 +210295,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamworkInstalledAppTeamApp", "ApiReferenceLink": null, @@ -210310,7 +210310,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTeamworkInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -210325,7 +210325,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoList", "ApiReferenceLink": null, @@ -210373,7 +210373,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoList", "ApiReferenceLink": null, @@ -210468,7 +210468,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoListDelta", "ApiReferenceLink": null, @@ -210508,7 +210508,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoListExtension", "ApiReferenceLink": null, @@ -210523,7 +210523,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoListExtension", "ApiReferenceLink": null, @@ -210552,7 +210552,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTask", "ApiReferenceLink": null, @@ -210600,7 +210600,7 @@ "OutputType": "IMicrosoftGraphTodoTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTask", "ApiReferenceLink": null, @@ -210897,7 +210897,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskChecklistItem", "ApiReferenceLink": null, @@ -210945,7 +210945,7 @@ "OutputType": "IMicrosoftGraphChecklistItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskChecklistItem", "ApiReferenceLink": null, @@ -211088,7 +211088,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskDelta", "ApiReferenceLink": null, @@ -211136,7 +211136,7 @@ "OutputType": "IMicrosoftGraphTodoTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskExtension", "ApiReferenceLink": null, @@ -211151,7 +211151,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskExtension", "ApiReferenceLink": null, @@ -211180,7 +211180,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskLinkedResource", "ApiReferenceLink": null, @@ -211228,7 +211228,7 @@ "OutputType": "IMicrosoftGraphLinkedResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTodoTaskLinkedResource", "ApiReferenceLink": null, @@ -211323,7 +211323,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOf", "ApiReferenceLink": null, @@ -211338,7 +211338,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOf", "ApiReferenceLink": null, @@ -211401,7 +211401,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -211416,7 +211416,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -211430,7 +211430,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -211445,7 +211445,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -211459,7 +211459,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -211474,7 +211474,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -211597,7 +211597,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveReport", "ApiReferenceLink": null, @@ -211612,7 +211612,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserTransitiveReport", "ApiReferenceLink": null, @@ -211641,7 +211641,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserWindowsInformationProtectionDeviceRegistration", "ApiReferenceLink": null, @@ -211656,7 +211656,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaUserWindowsInformationProtectionDeviceRegistration", "ApiReferenceLink": null, @@ -211685,7 +211685,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEvent", "ApiReferenceLink": null, @@ -211700,7 +211700,7 @@ "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEvent", "ApiReferenceLink": null, @@ -211728,7 +211728,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenter", "ApiReferenceLink": null, @@ -211743,7 +211743,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenter", "ApiReferenceLink": null, @@ -211772,7 +211772,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterSession", "ApiReferenceLink": null, @@ -211787,7 +211787,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterSession", "ApiReferenceLink": null, @@ -211801,7 +211801,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -211831,7 +211831,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSession", "ApiReferenceLink": null, @@ -211846,7 +211846,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSession", "ApiReferenceLink": null, @@ -211860,7 +211860,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -211875,7 +211875,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -211889,7 +211889,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -211904,7 +211904,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -211948,7 +211948,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -211978,7 +211978,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionPresenter", "ApiReferenceLink": null, @@ -211993,7 +211993,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionPresenter", "ApiReferenceLink": null, @@ -212022,7 +212022,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistration", "ApiReferenceLink": null, @@ -212037,7 +212037,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistration", "ApiReferenceLink": null, @@ -212051,7 +212051,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistrationByEmail", "ApiReferenceLink": null, @@ -212066,7 +212066,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistrationByUserId", "ApiReferenceLink": null, @@ -212096,7 +212096,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhall", "ApiReferenceLink": null, @@ -212111,7 +212111,7 @@ "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhall", "ApiReferenceLink": null, @@ -212125,7 +212125,7 @@ "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallByUserIdAndRole", "ApiReferenceLink": null, @@ -212140,7 +212140,7 @@ "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallByUserRole", "ApiReferenceLink": null, @@ -212169,7 +212169,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenter", "ApiReferenceLink": null, @@ -212184,7 +212184,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenter", "ApiReferenceLink": null, @@ -212213,7 +212213,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterSession", "ApiReferenceLink": null, @@ -212228,7 +212228,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterSession", "ApiReferenceLink": null, @@ -212242,7 +212242,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -212272,7 +212272,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSession", "ApiReferenceLink": null, @@ -212287,7 +212287,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSession", "ApiReferenceLink": null, @@ -212301,7 +212301,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReport", "ApiReferenceLink": null, @@ -212316,7 +212316,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReport", "ApiReferenceLink": null, @@ -212330,7 +212330,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -212345,7 +212345,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -212389,7 +212389,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -212419,7 +212419,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionPresenter", "ApiReferenceLink": null, @@ -212434,7 +212434,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionPresenter", "ApiReferenceLink": null, @@ -212463,7 +212463,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistration", "ApiReferenceLink": null, @@ -212478,7 +212478,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistration", "ApiReferenceLink": null, @@ -212492,7 +212492,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistrationByEmail", "ApiReferenceLink": null, @@ -212507,7 +212507,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistrationByUserId", "ApiReferenceLink": null, @@ -212537,7 +212537,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinar", "ApiReferenceLink": null, @@ -212552,7 +212552,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinar", "ApiReferenceLink": null, @@ -212566,7 +212566,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarByUserIdAndRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-beta", @@ -212581,7 +212581,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarByUserRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-beta", @@ -212610,7 +212610,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenter", "ApiReferenceLink": null, @@ -212625,7 +212625,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenter", "ApiReferenceLink": null, @@ -212654,7 +212654,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterSession", "ApiReferenceLink": null, @@ -212669,7 +212669,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterSession", "ApiReferenceLink": null, @@ -212683,7 +212683,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -212713,7 +212713,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -212728,7 +212728,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -212742,7 +212742,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationByEmail", "ApiReferenceLink": null, @@ -212757,7 +212757,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationByUserId", "ApiReferenceLink": null, @@ -212772,7 +212772,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationConfiguration", "ApiReferenceLink": null, @@ -212802,7 +212802,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationSession", "ApiReferenceLink": null, @@ -212817,7 +212817,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationSession", "ApiReferenceLink": null, @@ -212831,7 +212831,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -212861,7 +212861,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -212876,7 +212876,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -212890,7 +212890,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -212905,7 +212905,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -212919,7 +212919,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -212934,7 +212934,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -212978,7 +212978,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionByJoinWebUrl", "ApiReferenceLink": null, @@ -213008,7 +213008,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionPresenter", "ApiReferenceLink": null, @@ -213023,7 +213023,7 @@ "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionPresenter", "ApiReferenceLink": null, @@ -213052,7 +213052,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistration", "ApiReferenceLink": null, @@ -213067,7 +213067,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistration", "ApiReferenceLink": null, @@ -213081,7 +213081,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistrationByEmail", "ApiReferenceLink": null, @@ -213096,7 +213096,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistrationByUserId", "ApiReferenceLink": null, @@ -214047,7 +214047,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusiness", "ApiReferenceLink": null, @@ -214095,7 +214095,7 @@ "OutputType": "IMicrosoftGraphBookingBusiness" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusiness", "ApiReferenceLink": null, @@ -214142,7 +214142,7 @@ "OutputType": "IMicrosoftGraphBookingBusiness" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessAppointment", "ApiReferenceLink": null, @@ -214190,7 +214190,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessAppointment", "ApiReferenceLink": null, @@ -214285,7 +214285,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -214300,7 +214300,7 @@ "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCalendarView", "ApiReferenceLink": null, @@ -214442,7 +214442,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCustomer", "ApiReferenceLink": null, @@ -214490,7 +214490,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCustomer", "ApiReferenceLink": null, @@ -214585,7 +214585,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -214633,7 +214633,7 @@ "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessCustomQuestion", "ApiReferenceLink": null, @@ -214728,7 +214728,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessService", "ApiReferenceLink": null, @@ -214776,7 +214776,7 @@ "OutputType": "IMicrosoftGraphBookingService" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessService", "ApiReferenceLink": null, @@ -214929,7 +214929,7 @@ "OutputType": "IMicrosoftGraphStaffAvailabilityItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -214977,7 +214977,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingBusinessStaffMember", "ApiReferenceLink": null, @@ -215072,7 +215072,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingCurrency", "ApiReferenceLink": null, @@ -215120,7 +215120,7 @@ "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgBookingCurrency", "ApiReferenceLink": null, @@ -215214,7 +215214,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get?view=graph-rest-1.0", @@ -215294,7 +215294,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChat", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list?view=graph-rest-1.0", @@ -215420,7 +215420,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatInstalledApp", "ApiReferenceLink": null, @@ -215516,7 +215516,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatInstalledApp", "ApiReferenceLink": null, @@ -215771,7 +215771,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatInstalledAppTeamApp", "ApiReferenceLink": null, @@ -215786,7 +215786,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -215801,7 +215801,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatLastMessagePreview", "ApiReferenceLink": null, @@ -215816,7 +215816,7 @@ "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMember", "ApiReferenceLink": null, @@ -215960,7 +215960,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMember", "ApiReferenceLink": null, @@ -216183,7 +216183,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessage", "ApiReferenceLink": null, @@ -216248,7 +216248,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessage", "ApiReferenceLink": null, @@ -216359,7 +216359,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -216423,7 +216423,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageHostedContent", "ApiReferenceLink": null, @@ -216497,7 +216497,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageHostedContent", "ApiReferenceLink": null, @@ -216640,7 +216640,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageReply", "ApiReferenceLink": null, @@ -216655,7 +216655,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageReply", "ApiReferenceLink": null, @@ -216684,7 +216684,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -216699,7 +216699,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -216716,7 +216716,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -216745,7 +216745,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatPermissionGrant", "ApiReferenceLink": null, @@ -216760,7 +216760,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatPermissionGrant", "ApiReferenceLink": null, @@ -216983,7 +216983,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatPinnedMessage", "ApiReferenceLink": null, @@ -217000,7 +217000,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatPinnedMessage", "ApiReferenceLink": null, @@ -217111,7 +217111,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatTab", "ApiReferenceLink": null, @@ -217191,7 +217191,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatTab", "ApiReferenceLink": null, @@ -217318,7 +217318,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgChatTabTeamApp", "ApiReferenceLink": null, @@ -217333,7 +217333,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCall", "ApiReferenceLink": null, @@ -217365,7 +217365,7 @@ "OutputType": "IMicrosoftGraphCall" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -217397,7 +217397,7 @@ "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallAudioRoutingGroup", "ApiReferenceLink": null, @@ -217460,7 +217460,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -217508,7 +217508,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallContentSharingSession", "ApiReferenceLink": null, @@ -217617,7 +217617,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallOperation", "ApiReferenceLink": null, @@ -217632,7 +217632,7 @@ "OutputType": "IMicrosoftGraphCommsOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallOperation", "ApiReferenceLink": null, @@ -217661,7 +217661,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallParticipant", "ApiReferenceLink": null, @@ -217693,7 +217693,7 @@ "OutputType": "IMicrosoftGraphParticipant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallParticipant", "ApiReferenceLink": null, @@ -217756,7 +217756,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallRecord", "ApiReferenceLink": null, @@ -217785,7 +217785,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -217800,7 +217800,7 @@ "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationCallRecordSession", "ApiReferenceLink": null, @@ -217844,7 +217844,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -217861,7 +217861,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeeting", "ApiReferenceLink": null, @@ -217908,7 +217908,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -217923,7 +217923,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -217937,7 +217937,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -217952,7 +217952,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -218058,7 +218058,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -218073,7 +218073,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingRecording", "ApiReferenceLink": null, @@ -218117,7 +218117,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -218132,7 +218132,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -218206,7 +218206,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationPresence", "ApiReferenceLink": null, @@ -218221,7 +218221,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCommunicationPresence", "ApiReferenceLink": null, @@ -218331,7 +218331,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgCompliance", "ApiReferenceLink": null, @@ -218345,7 +218345,7 @@ "OutputType": "IMicrosoftGraphCompliance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContact", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-get?view=graph-rest-1.0", @@ -218385,7 +218385,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContact", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-1.0", @@ -218478,7 +218478,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-delta?view=graph-rest-1.0", @@ -218517,7 +218517,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDirectReport", "ApiReferenceLink": null, @@ -218532,7 +218532,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDirectReport", "ApiReferenceLink": null, @@ -218579,7 +218579,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDirectReportAsOrgContact", "ApiReferenceLink": null, @@ -218594,7 +218594,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDirectReportAsOrgContact", "ApiReferenceLink": null, @@ -218608,7 +218608,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDirectReportAsUser", "ApiReferenceLink": null, @@ -218623,7 +218623,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactDirectReportAsUser", "ApiReferenceLink": null, @@ -218715,7 +218715,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactManager", "ApiReferenceLink": null, @@ -218975,7 +218975,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactMemberOf", "ApiReferenceLink": null, @@ -218990,7 +218990,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactMemberOf", "ApiReferenceLink": null, @@ -219037,7 +219037,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -219052,7 +219052,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -219066,7 +219066,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactMemberOfAsGroup", "ApiReferenceLink": null, @@ -219081,7 +219081,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactMemberOfAsGroup", "ApiReferenceLink": null, @@ -219173,7 +219173,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactServiceProvisioningError", "ApiReferenceLink": null, @@ -219202,7 +219202,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactTransitiveMemberOf", "ApiReferenceLink": null, @@ -219217,7 +219217,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactTransitiveMemberOf", "ApiReferenceLink": null, @@ -219256,7 +219256,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -219271,7 +219271,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -219285,7 +219285,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -219300,7 +219300,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -219384,7 +219384,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContract", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-get?view=graph-rest-1.0", @@ -219416,7 +219416,7 @@ "OutputType": "IMicrosoftGraphContract" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContract", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-list?view=graph-rest-1.0", @@ -219493,7 +219493,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgContractDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0", @@ -219558,7 +219558,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDataPolicyOperation", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/datapolicyoperation-get?view=graph-rest-1.0", @@ -219590,7 +219590,7 @@ "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDataPolicyOperation", "ApiReferenceLink": null, @@ -219618,7 +219618,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-1.0", @@ -219666,7 +219666,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDevice", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list?view=graph-rest-1.0", @@ -228887,7 +228887,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceByDeviceId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-1.0", @@ -228997,7 +228997,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delta?view=graph-rest-1.0", @@ -229011,7 +229011,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceExtension", "ApiReferenceLink": null, @@ -229026,7 +229026,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceExtension", "ApiReferenceLink": null, @@ -229055,7 +229055,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagement", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-notification-devicemanagement-get?view=graph-rest-1.0", @@ -229150,7 +229150,7 @@ "OutputType": "IMicrosoftGraphDeviceManagement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementApplePushNotificationCertificate", "ApiReferenceLink": null, @@ -229197,7 +229197,7 @@ "OutputType": "IMicrosoftGraphApplePushNotificationCertificate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -229229,7 +229229,7 @@ "OutputType": "IMicrosoftGraphAuditEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementAuditEvent", "ApiReferenceLink": null, @@ -229354,7 +229354,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -229402,7 +229402,7 @@ "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementComplianceManagementPartner", "ApiReferenceLink": null, @@ -229496,7 +229496,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementConditionalAccessSetting", "ApiReferenceLink": null, @@ -229543,7 +229543,7 @@ "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -229591,7 +229591,7 @@ "OutputType": "IMicrosoftGraphDetectedApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDetectedApp", "ApiReferenceLink": null, @@ -229685,7 +229685,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", "ApiReferenceLink": null, @@ -229717,7 +229717,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", "ApiReferenceLink": null, @@ -229780,7 +229780,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -229828,7 +229828,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCategory", "ApiReferenceLink": null, @@ -229922,7 +229922,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -229954,7 +229954,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "ApiReferenceLink": null, @@ -229985,7 +229985,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -230017,7 +230017,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "ApiReferenceLink": null, @@ -230111,7 +230111,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -230143,7 +230143,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -230206,7 +230206,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "ApiReferenceLink": null, @@ -230237,7 +230237,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -230269,7 +230269,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", "ApiReferenceLink": null, @@ -230332,7 +230332,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "ApiReferenceLink": null, @@ -230364,7 +230364,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -230396,7 +230396,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", "ApiReferenceLink": null, @@ -230459,7 +230459,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -230491,7 +230491,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "ApiReferenceLink": null, @@ -230554,7 +230554,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -230586,7 +230586,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "ApiReferenceLink": null, @@ -230648,7 +230648,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -230680,7 +230680,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "ApiReferenceLink": null, @@ -230743,7 +230743,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -230775,7 +230775,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatus", "ApiReferenceLink": null, @@ -230838,7 +230838,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "ApiReferenceLink": null, @@ -230870,7 +230870,7 @@ "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -230902,7 +230902,7 @@ "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfiguration", "ApiReferenceLink": null, @@ -230933,7 +230933,7 @@ "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -230965,7 +230965,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "ApiReferenceLink": null, @@ -231059,7 +231059,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -231091,7 +231091,7 @@ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "ApiReferenceLink": null, @@ -231154,7 +231154,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "ApiReferenceLink": null, @@ -231185,7 +231185,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -231217,7 +231217,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatus", "ApiReferenceLink": null, @@ -231280,7 +231280,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "ApiReferenceLink": null, @@ -231344,7 +231344,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -231376,7 +231376,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatus", "ApiReferenceLink": null, @@ -231439,7 +231439,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatusOverview", "ApiReferenceLink": null, @@ -231471,7 +231471,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -231519,7 +231519,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "ApiReferenceLink": null, @@ -231566,7 +231566,7 @@ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -231614,7 +231614,7 @@ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "ApiReferenceLink": null, @@ -231788,7 +231788,7 @@ "OutputType": "IMicrosoftGraphRolePermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -231836,7 +231836,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementExchangeConnector", "ApiReferenceLink": null, @@ -231930,7 +231930,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -231962,7 +231962,7 @@ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -232024,7 +232024,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -232056,7 +232056,7 @@ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementIoUpdateStatus", "ApiReferenceLink": null, @@ -232118,7 +232118,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -232166,7 +232166,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDevice", "ApiReferenceLink": null, @@ -232213,7 +232213,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceCategory", "ApiReferenceLink": null, @@ -232228,7 +232228,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -232243,7 +232243,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -232272,7 +232272,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -232287,7 +232287,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -232363,7 +232363,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -232378,7 +232378,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequest", "ApiReferenceLink": null, @@ -232407,7 +232407,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceOverview", "ApiReferenceLink": null, @@ -232454,7 +232454,7 @@ "OutputType": "IMicrosoftGraphManagedDeviceOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceUser", "ApiReferenceLink": null, @@ -232468,7 +232468,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -232483,7 +232483,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -232498,7 +232498,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -232527,7 +232527,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -232559,7 +232559,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", "ApiReferenceLink": null, @@ -232590,7 +232590,7 @@ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -232638,7 +232638,7 @@ "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "ApiReferenceLink": null, @@ -232764,7 +232764,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -232812,7 +232812,7 @@ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "ApiReferenceLink": null, @@ -232906,7 +232906,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -232938,7 +232938,7 @@ "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "ApiReferenceLink": null, @@ -233000,7 +233000,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -233032,7 +233032,7 @@ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "ApiReferenceLink": null, @@ -233095,7 +233095,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementPartner", "ApiReferenceLink": null, @@ -233143,7 +233143,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementPartner", "ApiReferenceLink": null, @@ -233237,7 +233237,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -233285,7 +233285,7 @@ "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "ApiReferenceLink": null, @@ -233379,7 +233379,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementReport", "ApiReferenceLink": null, @@ -234162,7 +234162,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementReportExportJob", "ApiReferenceLink": null, @@ -234226,7 +234226,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementExportJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementReportExportJob", "ApiReferenceLink": null, @@ -234800,7 +234800,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -234848,7 +234848,7 @@ "OutputType": "IMicrosoftGraphResourceOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementResourceOperation", "ApiReferenceLink": null, @@ -234942,7 +234942,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -234990,7 +234990,7 @@ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleAssignment", "ApiReferenceLink": null, @@ -235084,7 +235084,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -235099,7 +235099,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -235147,7 +235147,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleDefinition", "ApiReferenceLink": null, @@ -235241,7 +235241,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -235289,7 +235289,7 @@ "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "ApiReferenceLink": null, @@ -235384,7 +235384,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -235432,7 +235432,7 @@ "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummary", "ApiReferenceLink": null, @@ -235463,7 +235463,7 @@ "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -235495,7 +235495,7 @@ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "ApiReferenceLink": null, @@ -235557,7 +235557,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -235589,7 +235589,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndCondition", "ApiReferenceLink": null, @@ -235620,7 +235620,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -235652,7 +235652,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatus", "ApiReferenceLink": null, @@ -235715,7 +235715,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition", "ApiReferenceLink": null, @@ -235747,7 +235747,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -235779,7 +235779,7 @@ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "ApiReferenceLink": null, @@ -235873,7 +235873,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -235905,7 +235905,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -235967,7 +235967,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -236015,7 +236015,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "ApiReferenceLink": null, @@ -236062,7 +236062,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -236110,7 +236110,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "ApiReferenceLink": null, @@ -236204,7 +236204,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -236252,7 +236252,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "ApiReferenceLink": null, @@ -236346,7 +236346,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -236394,7 +236394,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", "ApiReferenceLink": null, @@ -236535,7 +236535,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -236583,7 +236583,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "ApiReferenceLink": null, @@ -236677,7 +236677,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -236725,7 +236725,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "ApiReferenceLink": null, @@ -236819,7 +236819,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -236867,7 +236867,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "ApiReferenceLink": null, @@ -236961,7 +236961,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -237009,7 +237009,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "ApiReferenceLink": null, @@ -237103,7 +237103,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", "ApiReferenceLink": null, @@ -237150,7 +237150,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -237165,7 +237165,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "ApiReferenceLink": null, @@ -237193,7 +237193,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -237241,7 +237241,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", "ApiReferenceLink": null, @@ -237288,7 +237288,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetric", "ApiReferenceLink": null, @@ -237336,7 +237336,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetric", "ApiReferenceLink": null, @@ -237384,7 +237384,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetric", "ApiReferenceLink": null, @@ -237479,7 +237479,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetric", "ApiReferenceLink": null, @@ -237527,7 +237527,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetric", "ApiReferenceLink": null, @@ -237575,7 +237575,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric", "ApiReferenceLink": null, @@ -237623,7 +237623,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -237671,7 +237671,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -237719,7 +237719,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", "ApiReferenceLink": null, @@ -237747,7 +237747,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -237762,7 +237762,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "ApiReferenceLink": null, @@ -237791,7 +237791,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -237839,7 +237839,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "ApiReferenceLink": null, @@ -237933,7 +237933,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -237981,7 +237981,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", "ApiReferenceLink": null, @@ -238075,7 +238075,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -238123,7 +238123,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "ApiReferenceLink": null, @@ -238217,7 +238217,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -238265,7 +238265,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "ApiReferenceLink": null, @@ -238359,7 +238359,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -238407,7 +238407,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "ApiReferenceLink": null, @@ -238501,7 +238501,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -238549,7 +238549,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", "ApiReferenceLink": null, @@ -238643,7 +238643,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -238691,7 +238691,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", "ApiReferenceLink": null, @@ -238785,7 +238785,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticOverview", "ApiReferenceLink": null, @@ -238832,7 +238832,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -238880,7 +238880,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistory", "ApiReferenceLink": null, @@ -238974,7 +238974,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "ApiReferenceLink": null, @@ -239021,7 +239021,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -239069,7 +239069,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "ApiReferenceLink": null, @@ -239163,7 +239163,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -239211,7 +239211,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "ApiReferenceLink": null, @@ -239306,7 +239306,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -239354,7 +239354,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", "ApiReferenceLink": null, @@ -239448,7 +239448,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpoint", "ApiReferenceLink": null, @@ -239462,7 +239462,7 @@ "OutputType": "IMicrosoftGraphVirtualEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointAuditEvent", "ApiReferenceLink": null, @@ -239494,7 +239494,7 @@ "OutputType": "IMicrosoftGraphCloudPcAuditEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointAuditEvent", "ApiReferenceLink": null, @@ -239587,7 +239587,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": null, @@ -239619,7 +239619,7 @@ "OutputType": "IMicrosoftGraphCloudPc" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointCloudPc", "ApiReferenceLink": null, @@ -239681,7 +239681,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -239713,7 +239713,7 @@ "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImage", "ApiReferenceLink": null, @@ -239806,7 +239806,7 @@ "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -239838,7 +239838,7 @@ "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImage", "ApiReferenceLink": null, @@ -239900,7 +239900,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -239932,7 +239932,7 @@ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointOnPremiseConnection", "ApiReferenceLink": null, @@ -239994,7 +239994,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -240026,7 +240026,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicy", "ApiReferenceLink": null, @@ -240057,7 +240057,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -240072,7 +240072,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "ApiReferenceLink": null, @@ -240086,7 +240086,7 @@ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser", "ApiReferenceLink": null, @@ -240101,7 +240101,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser", "ApiReferenceLink": null, @@ -240130,7 +240130,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting", "ApiReferenceLink": null, @@ -240145,7 +240145,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError", "ApiReferenceLink": null, @@ -240220,7 +240220,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -240252,7 +240252,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", "ApiReferenceLink": null, @@ -240283,7 +240283,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -240298,7 +240298,7 @@ "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignment", "ApiReferenceLink": null, @@ -240358,7 +240358,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -240390,7 +240390,7 @@ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsAutopilotDeviceIdentity", "ApiReferenceLink": null, @@ -240452,7 +240452,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -240484,7 +240484,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", "ApiReferenceLink": null, @@ -240546,7 +240546,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -240578,7 +240578,7 @@ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", "ApiReferenceLink": null, @@ -240640,7 +240640,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -240688,7 +240688,7 @@ "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsMalwareInformation", "ApiReferenceLink": null, @@ -240782,7 +240782,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -240830,7 +240830,7 @@ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", "ApiReferenceLink": null, @@ -241137,7 +241137,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceMemberOf", "ApiReferenceLink": null, @@ -241152,7 +241152,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceMemberOf", "ApiReferenceLink": null, @@ -241199,7 +241199,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -241214,7 +241214,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -241228,7 +241228,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceMemberOfAsGroup", "ApiReferenceLink": null, @@ -241243,7 +241243,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceMemberOfAsGroup", "ApiReferenceLink": null, @@ -241335,7 +241335,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwner", "ApiReferenceLink": null, @@ -241382,7 +241382,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsAppRoleAssignment", "ApiReferenceLink": null, @@ -241397,7 +241397,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsAppRoleAssignment", "ApiReferenceLink": null, @@ -241411,7 +241411,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsEndpoint", "ApiReferenceLink": null, @@ -241426,7 +241426,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsEndpoint", "ApiReferenceLink": null, @@ -241440,7 +241440,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -241455,7 +241455,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -241469,7 +241469,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsUser", "ApiReferenceLink": null, @@ -241484,7 +241484,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsUser", "ApiReferenceLink": null, @@ -241653,7 +241653,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUser", "ApiReferenceLink": null, @@ -241700,7 +241700,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsAppRoleAssignment", "ApiReferenceLink": null, @@ -241715,7 +241715,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsAppRoleAssignment", "ApiReferenceLink": null, @@ -241729,7 +241729,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsEndpoint", "ApiReferenceLink": null, @@ -241744,7 +241744,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsEndpoint", "ApiReferenceLink": null, @@ -241758,7 +241758,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsServicePrincipal", "ApiReferenceLink": null, @@ -241773,7 +241773,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsServicePrincipal", "ApiReferenceLink": null, @@ -241787,7 +241787,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsUser", "ApiReferenceLink": null, @@ -241802,7 +241802,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsUser", "ApiReferenceLink": null, @@ -241971,7 +241971,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOf", "ApiReferenceLink": null, @@ -241986,7 +241986,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOf", "ApiReferenceLink": null, @@ -242033,7 +242033,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -242048,7 +242048,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -242062,7 +242062,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -242077,7 +242077,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -242169,7 +242169,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectory", "ApiReferenceLink": null, @@ -242183,7 +242183,7 @@ "OutputType": "IMicrosoftGraphDirectory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -242231,7 +242231,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnit", "ApiReferenceLink": null, @@ -242325,7 +242325,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitDelta", "ApiReferenceLink": null, @@ -242372,7 +242372,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -242387,7 +242387,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitExtension", "ApiReferenceLink": null, @@ -242416,7 +242416,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMember", "ApiReferenceLink": null, @@ -242463,7 +242463,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsApplication", "ApiReferenceLink": null, @@ -242478,7 +242478,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsApplication", "ApiReferenceLink": null, @@ -242525,7 +242525,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsDevice", "ApiReferenceLink": null, @@ -242540,7 +242540,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsDevice", "ApiReferenceLink": null, @@ -242587,7 +242587,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsGroup", "ApiReferenceLink": null, @@ -242602,7 +242602,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsGroup", "ApiReferenceLink": null, @@ -242649,7 +242649,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsOrgContact", "ApiReferenceLink": null, @@ -242664,7 +242664,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsOrgContact", "ApiReferenceLink": null, @@ -242711,7 +242711,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -242726,7 +242726,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -242773,7 +242773,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsUser", "ApiReferenceLink": null, @@ -242788,7 +242788,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsUser", "ApiReferenceLink": null, @@ -243218,7 +243218,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -243266,7 +243266,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", "ApiReferenceLink": null, @@ -243361,7 +243361,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAttributeSet", "ApiReferenceLink": null, @@ -243393,7 +243393,7 @@ "OutputType": "IMicrosoftGraphAttributeSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryAttributeSet", "ApiReferenceLink": null, @@ -243455,7 +243455,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -243487,7 +243487,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", "ApiReferenceLink": null, @@ -243518,7 +243518,7 @@ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -243550,7 +243550,7 @@ "OutputType": "IMicrosoftGraphAllowedValue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "ApiReferenceLink": null, @@ -243644,7 +243644,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryDeletedItem", "ApiReferenceLink": null, @@ -244009,7 +244009,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -244041,7 +244041,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryFederationConfiguration", "ApiReferenceLink": null, @@ -244103,7 +244103,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryObject", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-get?view=graph-rest-1.0", @@ -244118,7 +244118,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryObject", "ApiReferenceLink": null, @@ -244176,7 +244176,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryObjectDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0", @@ -244402,7 +244402,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -244417,7 +244417,7 @@ "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryOnPremiseSynchronization", "ApiReferenceLink": null, @@ -244479,7 +244479,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-1.0", @@ -244527,7 +244527,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list?view=graph-rest-1.0", @@ -244589,7 +244589,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleByRoleTemplateId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-1.0", @@ -244684,7 +244684,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-delta?view=graph-rest-1.0", @@ -244731,7 +244731,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMember", "ApiReferenceLink": null, @@ -244778,7 +244778,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsApplication", "ApiReferenceLink": null, @@ -244793,7 +244793,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsApplication", "ApiReferenceLink": null, @@ -244807,7 +244807,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsDevice", "ApiReferenceLink": null, @@ -244822,7 +244822,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsDevice", "ApiReferenceLink": null, @@ -244836,7 +244836,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsGroup", "ApiReferenceLink": null, @@ -244851,7 +244851,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsGroup", "ApiReferenceLink": null, @@ -244865,7 +244865,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsOrgContact", "ApiReferenceLink": null, @@ -244880,7 +244880,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsOrgContact", "ApiReferenceLink": null, @@ -244894,7 +244894,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -244909,7 +244909,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -244923,7 +244923,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsUser", "ApiReferenceLink": null, @@ -244938,7 +244938,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsUser", "ApiReferenceLink": null, @@ -245171,7 +245171,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -245186,7 +245186,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleScopedMember", "ApiReferenceLink": null, @@ -245281,7 +245281,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-get?view=graph-rest-1.0", @@ -245329,7 +245329,7 @@ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-list?view=graph-rest-1.0", @@ -245438,7 +245438,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectoryRoleTemplateDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0", @@ -245519,7 +245519,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectorySubscription", "ApiReferenceLink": null, @@ -245534,7 +245534,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectorySubscription", "ApiReferenceLink": null, @@ -245548,7 +245548,7 @@ "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDirectorySubscriptionByCommerceSubscriptionId", "ApiReferenceLink": null, @@ -245577,7 +245577,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-get?view=graph-rest-1.0", @@ -245617,7 +245617,7 @@ "OutputType": "IMicrosoftGraphDomain" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomain", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list?view=graph-rest-1.0", @@ -245695,7 +245695,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainFederationConfiguration", "ApiReferenceLink": null, @@ -245727,7 +245727,7 @@ "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainFederationConfiguration", "ApiReferenceLink": null, @@ -245756,7 +245756,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainNameReference", "ApiReferenceLink": null, @@ -245771,7 +245771,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainNameReference", "ApiReferenceLink": null, @@ -245834,7 +245834,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -245849,7 +245849,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainServiceConfigurationRecord", "ApiReferenceLink": null, @@ -245912,7 +245912,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -245927,7 +245927,7 @@ "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDomainVerificationDnsRecord", "ApiReferenceLink": null, @@ -245990,7 +245990,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDrive", "ApiReferenceLink": null, @@ -246054,7 +246054,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDrive", "ApiReferenceLink": null, @@ -246068,7 +246068,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveBundle", "ApiReferenceLink": null, @@ -246083,7 +246083,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveBundle", "ApiReferenceLink": null, @@ -246127,7 +246127,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveContentTypeBase", "ApiReferenceLink": null, @@ -246142,7 +246142,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -246157,7 +246157,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -246186,7 +246186,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveCreatedByUser", "ApiReferenceLink": null, @@ -246201,7 +246201,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -246216,7 +246216,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -246245,7 +246245,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveFollowing", "ApiReferenceLink": null, @@ -246260,7 +246260,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveFollowing", "ApiReferenceLink": null, @@ -246304,7 +246304,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItem", "ApiReferenceLink": null, @@ -246384,7 +246384,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItem", "ApiReferenceLink": null, @@ -246398,7 +246398,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", @@ -246415,7 +246415,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemAnalytic", "ApiReferenceLink": null, @@ -246479,7 +246479,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -246494,7 +246494,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -246508,7 +246508,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -246537,7 +246537,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -246601,7 +246601,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemAnalyticTime", "ApiReferenceLink": null, @@ -246665,7 +246665,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemChild", "ApiReferenceLink": null, @@ -246680,7 +246680,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemChild", "ApiReferenceLink": null, @@ -246901,7 +246901,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemCreatedByUser", "ApiReferenceLink": null, @@ -246916,7 +246916,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -246931,7 +246931,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -246960,7 +246960,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", @@ -246977,7 +246977,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemItemLastModifiedByUser", "ApiReferenceLink": null, @@ -246992,7 +246992,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -247007,7 +247007,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -247036,7 +247036,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemLastModifiedByUser", "ApiReferenceLink": null, @@ -247053,7 +247053,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -247070,7 +247070,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -247102,7 +247102,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItem", "ApiReferenceLink": null, @@ -247117,7 +247117,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemActivityByInterval", "ApiReferenceLink": null, @@ -247134,7 +247134,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemAnalytic", "ApiReferenceLink": null, @@ -247149,7 +247149,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemCreatedByUser", "ApiReferenceLink": null, @@ -247164,7 +247164,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -247179,7 +247179,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -247208,7 +247208,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -247223,7 +247223,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -247252,7 +247252,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -247267,7 +247267,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemDriveItem", "ApiReferenceLink": null, @@ -247297,7 +247297,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemField", "ApiReferenceLink": null, @@ -247312,7 +247312,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemVersion", "ApiReferenceLink": null, @@ -247327,7 +247327,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemVersion", "ApiReferenceLink": null, @@ -247356,7 +247356,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -247371,7 +247371,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemPermission", "ApiReferenceLink": null, @@ -247435,7 +247435,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemPermission", "ApiReferenceLink": null, @@ -247562,7 +247562,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -247577,7 +247577,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemSubscription", "ApiReferenceLink": null, @@ -247592,7 +247592,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemSubscription", "ApiReferenceLink": null, @@ -247621,7 +247621,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemThumbnail", "ApiReferenceLink": null, @@ -247636,7 +247636,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemThumbnail", "ApiReferenceLink": null, @@ -247763,7 +247763,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemVersion", "ApiReferenceLink": null, @@ -247827,7 +247827,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveItemVersion", "ApiReferenceLink": null, @@ -248018,7 +248018,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveLastModifiedByUser", "ApiReferenceLink": null, @@ -248035,7 +248035,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -248052,7 +248052,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -248084,7 +248084,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveList", "ApiReferenceLink": null, @@ -248099,7 +248099,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListColumn", "ApiReferenceLink": null, @@ -248114,7 +248114,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListColumn", "ApiReferenceLink": null, @@ -248143,7 +248143,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListColumnSourceColumn", "ApiReferenceLink": null, @@ -248158,7 +248158,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentType", "ApiReferenceLink": null, @@ -248173,7 +248173,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentType", "ApiReferenceLink": null, @@ -248187,7 +248187,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -248202,7 +248202,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -248231,7 +248231,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -248246,7 +248246,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -248275,7 +248275,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -248290,7 +248290,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -248319,7 +248319,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -248334,7 +248334,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", @@ -248364,7 +248364,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListCreatedByUser", "ApiReferenceLink": null, @@ -248379,7 +248379,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -248394,7 +248394,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -248423,7 +248423,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListDrive", "ApiReferenceLink": null, @@ -248438,7 +248438,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItem", "ApiReferenceLink": null, @@ -248453,7 +248453,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItem", "ApiReferenceLink": null, @@ -248467,7 +248467,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemActivityByInterval", "ApiReferenceLink": null, @@ -248484,7 +248484,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemAnalytic", "ApiReferenceLink": null, @@ -248514,7 +248514,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemCreatedByUser", "ApiReferenceLink": null, @@ -248529,7 +248529,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -248544,7 +248544,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -248573,7 +248573,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", @@ -248590,7 +248590,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -248605,7 +248605,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -248634,7 +248634,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -248649,7 +248649,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemDriveItem", "ApiReferenceLink": null, @@ -248679,7 +248679,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemField", "ApiReferenceLink": null, @@ -248694,7 +248694,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemVersion", "ApiReferenceLink": null, @@ -248709,7 +248709,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemVersion", "ApiReferenceLink": null, @@ -248738,7 +248738,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListItemVersionField", "ApiReferenceLink": null, @@ -248753,7 +248753,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListOperation", "ApiReferenceLink": null, @@ -248768,7 +248768,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListOperation", "ApiReferenceLink": null, @@ -248797,7 +248797,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListSubscription", "ApiReferenceLink": null, @@ -248812,7 +248812,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveListSubscription", "ApiReferenceLink": null, @@ -248841,7 +248841,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRoot", "ApiReferenceLink": null, @@ -248856,7 +248856,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", @@ -248873,7 +248873,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootAnalytic", "ApiReferenceLink": null, @@ -248888,7 +248888,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -248903,7 +248903,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -248917,7 +248917,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -248946,7 +248946,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -248961,7 +248961,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootAnalyticTime", "ApiReferenceLink": null, @@ -248976,7 +248976,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootChild", "ApiReferenceLink": null, @@ -248991,7 +248991,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootChild", "ApiReferenceLink": null, @@ -249050,7 +249050,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootCreatedByUser", "ApiReferenceLink": null, @@ -249065,7 +249065,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -249080,7 +249080,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -249109,7 +249109,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", @@ -249175,7 +249175,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootItemLastModifiedByUser", "ApiReferenceLink": null, @@ -249190,7 +249190,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -249205,7 +249205,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -249234,7 +249234,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootLastModifiedByUser", "ApiReferenceLink": null, @@ -249249,7 +249249,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -249264,7 +249264,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -249293,7 +249293,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItem", "ApiReferenceLink": null, @@ -249308,7 +249308,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemActivityByInterval", "ApiReferenceLink": null, @@ -249325,7 +249325,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemAnalytic", "ApiReferenceLink": null, @@ -249340,7 +249340,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemCreatedByUser", "ApiReferenceLink": null, @@ -249355,7 +249355,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -249370,7 +249370,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -249399,7 +249399,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -249414,7 +249414,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -249443,7 +249443,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -249458,7 +249458,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemDriveItem", "ApiReferenceLink": null, @@ -249488,7 +249488,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemField", "ApiReferenceLink": null, @@ -249503,7 +249503,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemVersion", "ApiReferenceLink": null, @@ -249518,7 +249518,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemVersion", "ApiReferenceLink": null, @@ -249547,7 +249547,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -249562,7 +249562,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootPermission", "ApiReferenceLink": null, @@ -249577,7 +249577,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootPermission", "ApiReferenceLink": null, @@ -249606,7 +249606,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -249621,7 +249621,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootSubscription", "ApiReferenceLink": null, @@ -249636,7 +249636,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootSubscription", "ApiReferenceLink": null, @@ -249665,7 +249665,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootThumbnail", "ApiReferenceLink": null, @@ -249680,7 +249680,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootThumbnail", "ApiReferenceLink": null, @@ -249709,7 +249709,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootVersion", "ApiReferenceLink": null, @@ -249724,7 +249724,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveRootVersion", "ApiReferenceLink": null, @@ -249768,7 +249768,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveSpecial", "ApiReferenceLink": null, @@ -249783,7 +249783,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgDriveSpecial", "ApiReferenceLink": null, @@ -249827,7 +249827,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClass", "ApiReferenceLink": null, @@ -249867,7 +249867,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClass", "ApiReferenceLink": null, @@ -249906,7 +249906,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignment", "ApiReferenceLink": null, @@ -249986,7 +249986,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignment", "ApiReferenceLink": null, @@ -250065,7 +250065,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -250145,7 +250145,7 @@ "OutputType": "IMicrosoftGraphEducationCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentCategory", "ApiReferenceLink": null, @@ -250386,7 +250386,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentCategoryDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-1.0", @@ -250548,7 +250548,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentDefault", "ApiReferenceLink": null, @@ -250628,7 +250628,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-1.0", @@ -250708,7 +250708,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentGradingCategory", "ApiReferenceLink": null, @@ -250723,7 +250723,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -250803,7 +250803,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentResource", "ApiReferenceLink": null, @@ -250962,7 +250962,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentRubric", "ApiReferenceLink": null, @@ -251122,7 +251122,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSetting", "ApiReferenceLink": null, @@ -251202,7 +251202,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -251217,7 +251217,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSettingGradingCategory", "ApiReferenceLink": null, @@ -251246,7 +251246,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -251326,7 +251326,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmission", "ApiReferenceLink": null, @@ -251485,7 +251485,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -251500,7 +251500,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -251595,7 +251595,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -251675,7 +251675,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -251834,7 +251834,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -251914,7 +251914,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -252112,7 +252112,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-delta?view=graph-rest-1.0", @@ -252175,7 +252175,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassGroup", "ApiReferenceLink": null, @@ -252239,7 +252239,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -252268,7 +252268,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassMember", "ApiReferenceLink": null, @@ -252410,7 +252410,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassModule", "ApiReferenceLink": null, @@ -252458,7 +252458,7 @@ "OutputType": "IMicrosoftGraphEducationModule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassModule", "ApiReferenceLink": null, @@ -252553,7 +252553,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassModuleResource", "ApiReferenceLink": null, @@ -252601,7 +252601,7 @@ "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassModuleResource", "ApiReferenceLink": null, @@ -252696,7 +252696,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassSchool", "ApiReferenceLink": null, @@ -252711,7 +252711,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassSchool", "ApiReferenceLink": null, @@ -252790,7 +252790,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationClassTeacher", "ApiReferenceLink": null, @@ -252908,7 +252908,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMe", "ApiReferenceLink": null, @@ -252947,7 +252947,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignment", "ApiReferenceLink": null, @@ -252962,7 +252962,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignment", "ApiReferenceLink": null, @@ -253041,7 +253041,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentCategory", "ApiReferenceLink": null, @@ -253084,7 +253084,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentCategoryDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-1.0", @@ -253178,7 +253178,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-1.0", @@ -253192,7 +253192,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentGradingCategory", "ApiReferenceLink": null, @@ -253207,7 +253207,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -253222,7 +253222,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentResource", "ApiReferenceLink": null, @@ -253251,7 +253251,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentRubric", "ApiReferenceLink": null, @@ -253281,7 +253281,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -253296,7 +253296,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmission", "ApiReferenceLink": null, @@ -253325,7 +253325,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -253340,7 +253340,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -253369,7 +253369,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -253384,7 +253384,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -253413,7 +253413,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -253428,7 +253428,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -253457,7 +253457,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeClass", "ApiReferenceLink": null, @@ -253472,7 +253472,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeClass", "ApiReferenceLink": null, @@ -253550,7 +253550,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeRubric", "ApiReferenceLink": null, @@ -253598,7 +253598,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeRubric", "ApiReferenceLink": null, @@ -253692,7 +253692,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeSchool", "ApiReferenceLink": null, @@ -253707,7 +253707,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeSchool", "ApiReferenceLink": null, @@ -253785,7 +253785,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeTaughtClass", "ApiReferenceLink": null, @@ -253800,7 +253800,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeTaughtClass", "ApiReferenceLink": null, @@ -253878,7 +253878,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeUser", "ApiReferenceLink": null, @@ -253949,7 +253949,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeUserMailboxSetting", "ApiReferenceLink": null, @@ -253963,7 +253963,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationMeUserServiceProvisioningError", "ApiReferenceLink": null, @@ -253991,7 +253991,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationRoot", "ApiReferenceLink": null, @@ -254005,7 +254005,7 @@ "OutputType": "IMicrosoftGraphEducationRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchool", "ApiReferenceLink": null, @@ -254045,7 +254045,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchool", "ApiReferenceLink": null, @@ -254084,7 +254084,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchoolAdministrativeUnit", "ApiReferenceLink": null, @@ -254148,7 +254148,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchoolClass", "ApiReferenceLink": null, @@ -254305,7 +254305,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchoolDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-delta?view=graph-rest-1.0", @@ -254376,7 +254376,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationSchoolUser", "ApiReferenceLink": null, @@ -254470,7 +254470,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUser", "ApiReferenceLink": null, @@ -254512,7 +254512,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUser", "ApiReferenceLink": null, @@ -254543,7 +254543,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignment", "ApiReferenceLink": null, @@ -254558,7 +254558,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignment", "ApiReferenceLink": null, @@ -254637,7 +254637,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentCategory", "ApiReferenceLink": null, @@ -254680,7 +254680,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentCategoryDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-1.0", @@ -254775,7 +254775,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-1.0", @@ -254790,7 +254790,7 @@ "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentGradingCategory", "ApiReferenceLink": null, @@ -254805,7 +254805,7 @@ "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -254820,7 +254820,7 @@ "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentResource", "ApiReferenceLink": null, @@ -254849,7 +254849,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentRubric", "ApiReferenceLink": null, @@ -254879,7 +254879,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -254894,7 +254894,7 @@ "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmission", "ApiReferenceLink": null, @@ -254923,7 +254923,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -254938,7 +254938,7 @@ "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionOutcome", "ApiReferenceLink": null, @@ -254967,7 +254967,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -254982,7 +254982,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionResource", "ApiReferenceLink": null, @@ -255011,7 +255011,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -255026,7 +255026,7 @@ "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResource", "ApiReferenceLink": null, @@ -255055,7 +255055,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserClass", "ApiReferenceLink": null, @@ -255070,7 +255070,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserClass", "ApiReferenceLink": null, @@ -255180,7 +255180,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-delta?view=graph-rest-1.0", @@ -255251,7 +255251,7 @@ "OutputType": "IMicrosoftGraphEducationUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserMailboxSetting", "ApiReferenceLink": null, @@ -255266,7 +255266,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserRubric", "ApiReferenceLink": null, @@ -255281,7 +255281,7 @@ "OutputType": "IMicrosoftGraphEducationRubric" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserRubric", "ApiReferenceLink": null, @@ -255310,7 +255310,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserSchool", "ApiReferenceLink": null, @@ -255325,7 +255325,7 @@ "OutputType": "IMicrosoftGraphEducationSchool" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserSchool", "ApiReferenceLink": null, @@ -255404,7 +255404,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserServiceProvisioningError", "ApiReferenceLink": null, @@ -255433,7 +255433,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserTaughtClass", "ApiReferenceLink": null, @@ -255448,7 +255448,7 @@ "OutputType": "IMicrosoftGraphEducationClass" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEducationUserTaughtClass", "ApiReferenceLink": null, @@ -255527,7 +255527,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -255559,7 +255559,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackage", "ApiReferenceLink": null, @@ -255636,7 +255636,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "ApiReferenceLink": null, @@ -255668,7 +255668,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "ApiReferenceLink": null, @@ -255731,7 +255731,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -255746,7 +255746,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy", "ApiReferenceLink": null, @@ -255760,7 +255760,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageCatalog", "ApiReferenceLink": null, @@ -255806,7 +255806,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage", "ApiReferenceLink": null, @@ -255868,7 +255868,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup", "ApiReferenceLink": null, @@ -255930,7 +255930,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleWith", "ApiReferenceLink": null, @@ -255945,7 +255945,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleWith", "ApiReferenceLink": null, @@ -255976,7 +255976,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignment", "ApiReferenceLink": null, @@ -256008,7 +256008,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignment", "ApiReferenceLink": null, @@ -256039,7 +256039,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentAdditional", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-additionalaccess?view=graph-rest-1.0", @@ -256103,7 +256103,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicy", "ApiReferenceLink": null, @@ -256137,7 +256137,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicy", "ApiReferenceLink": null, @@ -256168,7 +256168,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyAccessPackage", "ApiReferenceLink": null, @@ -256183,7 +256183,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCatalog", "ApiReferenceLink": null, @@ -256229,7 +256229,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -256244,7 +256244,7 @@ "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", "ApiReferenceLink": null, @@ -256273,7 +256273,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension", "ApiReferenceLink": null, @@ -256288,7 +256288,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyQuestion", "ApiReferenceLink": null, @@ -256303,7 +256303,7 @@ "OutputType": "IMicrosoftGraphAccessPackageQuestion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyQuestion", "ApiReferenceLink": null, @@ -256332,7 +256332,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentRequest", "ApiReferenceLink": null, @@ -256364,7 +256364,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentRequest", "ApiReferenceLink": null, @@ -256426,7 +256426,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalog", "ApiReferenceLink": null, @@ -256458,7 +256458,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalog", "ApiReferenceLink": null, @@ -256535,7 +256535,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -256550,7 +256550,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -256579,7 +256579,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResource", "ApiReferenceLink": null, @@ -256594,7 +256594,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResource", "ApiReferenceLink": null, @@ -256623,7 +256623,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceEnvironment", "ApiReferenceLink": null, @@ -256638,7 +256638,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRole", "ApiReferenceLink": null, @@ -256657,7 +256657,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRole", "ApiReferenceLink": null, @@ -256692,7 +256692,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResource", "ApiReferenceLink": null, @@ -256709,7 +256709,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -256726,7 +256726,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -256743,7 +256743,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -256775,7 +256775,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -256792,7 +256792,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -256809,7 +256809,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -256824,7 +256824,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -256853,7 +256853,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScope", "ApiReferenceLink": null, @@ -256872,7 +256872,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScope", "ApiReferenceLink": null, @@ -256907,7 +256907,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResource", "ApiReferenceLink": null, @@ -256924,7 +256924,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -256941,7 +256941,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -256958,7 +256958,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -256990,7 +256990,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -257007,7 +257007,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -257024,7 +257024,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -257039,7 +257039,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -257068,7 +257068,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -257100,7 +257100,7 @@ "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementConnectedOrganization", "ApiReferenceLink": null, @@ -257162,7 +257162,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", "ApiReferenceLink": null, @@ -257256,7 +257256,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", "ApiReferenceLink": null, @@ -257350,7 +257350,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResource", "ApiReferenceLink": null, @@ -257365,7 +257365,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResource", "ApiReferenceLink": null, @@ -257393,7 +257393,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironment", "ApiReferenceLink": null, @@ -257412,7 +257412,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironment", "ApiReferenceLink": null, @@ -257440,7 +257440,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResource", "ApiReferenceLink": null, @@ -257455,7 +257455,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResource", "ApiReferenceLink": null, @@ -257484,7 +257484,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRole", "ApiReferenceLink": null, @@ -257499,7 +257499,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRole", "ApiReferenceLink": null, @@ -257528,7 +257528,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResource", "ApiReferenceLink": null, @@ -257543,7 +257543,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -257558,7 +257558,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", "ApiReferenceLink": null, @@ -257573,7 +257573,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", "ApiReferenceLink": null, @@ -257602,7 +257602,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -257617,7 +257617,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -257632,7 +257632,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScope", "ApiReferenceLink": null, @@ -257647,7 +257647,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScope", "ApiReferenceLink": null, @@ -257676,7 +257676,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResource", "ApiReferenceLink": null, @@ -257691,7 +257691,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -257706,7 +257706,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", "ApiReferenceLink": null, @@ -257721,7 +257721,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", "ApiReferenceLink": null, @@ -257750,7 +257750,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -257765,7 +257765,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -257780,7 +257780,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequest", "ApiReferenceLink": null, @@ -257795,7 +257795,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequest", "ApiReferenceLink": null, @@ -257809,7 +257809,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalog", "ApiReferenceLink": null, @@ -257824,7 +257824,7 @@ "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage", "ApiReferenceLink": null, @@ -257839,7 +257839,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage", "ApiReferenceLink": null, @@ -257868,7 +257868,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -257883,7 +257883,7 @@ "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", "ApiReferenceLink": null, @@ -257912,7 +257912,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResource", "ApiReferenceLink": null, @@ -257927,7 +257927,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResource", "ApiReferenceLink": null, @@ -257956,7 +257956,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceEnvironment", "ApiReferenceLink": null, @@ -257971,7 +257971,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRole", "ApiReferenceLink": null, @@ -257990,7 +257990,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRole", "ApiReferenceLink": null, @@ -258025,7 +258025,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource", "ApiReferenceLink": null, @@ -258042,7 +258042,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -258059,7 +258059,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -258076,7 +258076,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", "ApiReferenceLink": null, @@ -258108,7 +258108,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -258125,7 +258125,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -258142,7 +258142,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -258157,7 +258157,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -258186,7 +258186,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScope", "ApiReferenceLink": null, @@ -258205,7 +258205,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScope", "ApiReferenceLink": null, @@ -258240,7 +258240,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource", "ApiReferenceLink": null, @@ -258257,7 +258257,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -258274,7 +258274,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -258291,7 +258291,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", "ApiReferenceLink": null, @@ -258323,7 +258323,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -258340,7 +258340,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -258357,7 +258357,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -258372,7 +258372,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -258415,7 +258415,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResource", "ApiReferenceLink": null, @@ -258430,7 +258430,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceEnvironment", "ApiReferenceLink": null, @@ -258445,7 +258445,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRole", "ApiReferenceLink": null, @@ -258460,7 +258460,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRole", "ApiReferenceLink": null, @@ -258489,7 +258489,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResource", "ApiReferenceLink": null, @@ -258504,7 +258504,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -258519,7 +258519,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope", "ApiReferenceLink": null, @@ -258534,7 +258534,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope", "ApiReferenceLink": null, @@ -258563,7 +258563,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -258578,7 +258578,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -258593,7 +258593,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScope", "ApiReferenceLink": null, @@ -258608,7 +258608,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScope", "ApiReferenceLink": null, @@ -258637,7 +258637,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResource", "ApiReferenceLink": null, @@ -258652,7 +258652,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -258667,7 +258667,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole", "ApiReferenceLink": null, @@ -258682,7 +258682,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole", "ApiReferenceLink": null, @@ -258711,7 +258711,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -258726,7 +258726,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -258741,7 +258741,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRole", "ApiReferenceLink": null, @@ -258756,7 +258756,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRole", "ApiReferenceLink": null, @@ -258785,7 +258785,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResource", "ApiReferenceLink": null, @@ -258800,7 +258800,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -258815,7 +258815,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScope", "ApiReferenceLink": null, @@ -258830,7 +258830,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScope", "ApiReferenceLink": null, @@ -258859,7 +258859,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScopeResource", "ApiReferenceLink": null, @@ -258874,7 +258874,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -258889,7 +258889,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScope", "ApiReferenceLink": null, @@ -258904,7 +258904,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScope", "ApiReferenceLink": null, @@ -258932,7 +258932,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResource", "ApiReferenceLink": null, @@ -258947,7 +258947,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceEnvironment", "ApiReferenceLink": null, @@ -258962,7 +258962,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRole", "ApiReferenceLink": null, @@ -258977,7 +258977,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRole", "ApiReferenceLink": null, @@ -259006,7 +259006,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResource", "ApiReferenceLink": null, @@ -259021,7 +259021,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -259036,7 +259036,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -259051,7 +259051,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", "ApiReferenceLink": null, @@ -259080,7 +259080,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceScope", "ApiReferenceLink": null, @@ -259095,7 +259095,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceScope", "ApiReferenceLink": null, @@ -259124,7 +259124,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRole", "ApiReferenceLink": null, @@ -259139,7 +259139,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResource", "ApiReferenceLink": null, @@ -259154,7 +259154,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceEnvironment", "ApiReferenceLink": null, @@ -259169,7 +259169,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole", "ApiReferenceLink": null, @@ -259184,7 +259184,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole", "ApiReferenceLink": null, @@ -259213,7 +259213,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope", "ApiReferenceLink": null, @@ -259228,7 +259228,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope", "ApiReferenceLink": null, @@ -259257,7 +259257,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource", "ApiReferenceLink": null, @@ -259272,7 +259272,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -259287,7 +259287,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -259302,7 +259302,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", "ApiReferenceLink": null, @@ -259331,7 +259331,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScope", "ApiReferenceLink": null, @@ -259346,7 +259346,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScope", "ApiReferenceLink": null, @@ -259375,7 +259375,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResource", "ApiReferenceLink": null, @@ -259390,7 +259390,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceEnvironment", "ApiReferenceLink": null, @@ -259405,7 +259405,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRole", "ApiReferenceLink": null, @@ -259420,7 +259420,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRole", "ApiReferenceLink": null, @@ -259449,7 +259449,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRoleResource", "ApiReferenceLink": null, @@ -259464,7 +259464,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRoleResourceEnvironment", "ApiReferenceLink": null, @@ -259479,7 +259479,7 @@ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgEntitlementManagementSetting", "ApiReferenceLink": null, @@ -259510,7 +259510,7 @@ "OutputType": "IMicrosoftGraphEntitlementManagementSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternal", "ApiReferenceLink": null, @@ -259524,7 +259524,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnection", "ApiReferenceLink": null, @@ -259564,7 +259564,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnection", "ApiReferenceLink": null, @@ -259642,7 +259642,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionGroup", "ApiReferenceLink": null, @@ -259682,7 +259682,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionGroup", "ApiReferenceLink": null, @@ -259711,7 +259711,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -259726,7 +259726,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionGroupMember", "ApiReferenceLink": null, @@ -259755,7 +259755,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionItem", "ApiReferenceLink": null, @@ -259795,7 +259795,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionItem", "ApiReferenceLink": null, @@ -259809,7 +259809,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -259824,7 +259824,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionItemActivity", "ApiReferenceLink": null, @@ -259853,7 +259853,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionItemActivityPerformedBy", "ApiReferenceLink": null, @@ -259883,7 +259883,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionOperation", "ApiReferenceLink": null, @@ -259923,7 +259923,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionOperation", "ApiReferenceLink": null, @@ -259952,7 +259952,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgExternalConnectionSchema", "ApiReferenceLink": null, @@ -259992,7 +259992,7 @@ "OutputType": "IMicrosoftGraphExternalConnectorsSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0", @@ -260048,7 +260048,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroup", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list?view=graph-rest-1.0", @@ -260197,7 +260197,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -260212,7 +260212,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupAppRoleAssignment", "ApiReferenceLink": null, @@ -260306,7 +260306,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupByUniqueName", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0", @@ -260377,7 +260377,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupCalendarEvent", "ApiReferenceLink": null, @@ -260425,7 +260425,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupCalendarEvent", "ApiReferenceLink": null, @@ -260456,7 +260456,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupCalendarEventDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", @@ -260714,7 +260714,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThread", "ApiReferenceLink": null, @@ -260762,7 +260762,7 @@ "OutputType": "IMicrosoftGraphConversationThread" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThread", "ApiReferenceLink": null, @@ -260857,7 +260857,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPost", "ApiReferenceLink": null, @@ -260907,7 +260907,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPost", "ApiReferenceLink": null, @@ -260954,7 +260954,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostAttachment", "ApiReferenceLink": null, @@ -260969,7 +260969,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostAttachment", "ApiReferenceLink": null, @@ -261112,7 +261112,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -261127,7 +261127,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostExtension", "ApiReferenceLink": null, @@ -261156,7 +261156,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -261171,7 +261171,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -261200,7 +261200,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -261215,7 +261215,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -261299,7 +261299,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupCreatedOnBehalfOf", "ApiReferenceLink": null, @@ -261314,7 +261314,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDefaultDrive", "ApiReferenceLink": null, @@ -261378,7 +261378,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delta?view=graph-rest-1.0", @@ -261433,7 +261433,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDrive", "ApiReferenceLink": null, @@ -261448,7 +261448,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDrive", "ApiReferenceLink": null, @@ -261511,7 +261511,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveBundle", "ApiReferenceLink": null, @@ -261526,7 +261526,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveBundle", "ApiReferenceLink": null, @@ -261570,7 +261570,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveContentTypeBase", "ApiReferenceLink": null, @@ -261585,7 +261585,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -261600,7 +261600,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -261693,7 +261693,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveCreatedByUser", "ApiReferenceLink": null, @@ -261708,7 +261708,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -261723,7 +261723,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -261752,7 +261752,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveFollowing", "ApiReferenceLink": null, @@ -261767,7 +261767,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveFollowing", "ApiReferenceLink": null, @@ -261811,7 +261811,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItem", "ApiReferenceLink": null, @@ -261826,7 +261826,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItem", "ApiReferenceLink": null, @@ -261840,7 +261840,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", @@ -261857,7 +261857,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemAnalytic", "ApiReferenceLink": null, @@ -261872,7 +261872,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -261887,7 +261887,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -261901,7 +261901,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -261930,7 +261930,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -261945,7 +261945,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticTime", "ApiReferenceLink": null, @@ -261960,7 +261960,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemChild", "ApiReferenceLink": null, @@ -261975,7 +261975,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemChild", "ApiReferenceLink": null, @@ -262049,7 +262049,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemCreatedByUser", "ApiReferenceLink": null, @@ -262064,7 +262064,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -262079,7 +262079,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -262108,7 +262108,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", @@ -262125,7 +262125,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemItemLastModifiedByUser", "ApiReferenceLink": null, @@ -262140,7 +262140,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -262155,7 +262155,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -262184,7 +262184,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemLastModifiedByUser", "ApiReferenceLink": null, @@ -262201,7 +262201,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -262218,7 +262218,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -262250,7 +262250,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItem", "ApiReferenceLink": null, @@ -262265,7 +262265,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemActivityByInterval", "ApiReferenceLink": null, @@ -262282,7 +262282,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemAnalytic", "ApiReferenceLink": null, @@ -262297,7 +262297,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemCreatedByUser", "ApiReferenceLink": null, @@ -262312,7 +262312,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -262327,7 +262327,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -262356,7 +262356,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -262371,7 +262371,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -262400,7 +262400,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -262415,7 +262415,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDriveItem", "ApiReferenceLink": null, @@ -262445,7 +262445,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemField", "ApiReferenceLink": null, @@ -262460,7 +262460,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -262475,7 +262475,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemVersion", "ApiReferenceLink": null, @@ -262504,7 +262504,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -262519,7 +262519,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemPermission", "ApiReferenceLink": null, @@ -262534,7 +262534,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemPermission", "ApiReferenceLink": null, @@ -262563,7 +262563,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -262578,7 +262578,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -262593,7 +262593,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemSubscription", "ApiReferenceLink": null, @@ -262622,7 +262622,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -262637,7 +262637,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemThumbnail", "ApiReferenceLink": null, @@ -262666,7 +262666,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemVersion", "ApiReferenceLink": null, @@ -262681,7 +262681,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveItemVersion", "ApiReferenceLink": null, @@ -262725,7 +262725,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveLastModifiedByUser", "ApiReferenceLink": null, @@ -262742,7 +262742,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -262759,7 +262759,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -262791,7 +262791,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveList", "ApiReferenceLink": null, @@ -262806,7 +262806,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListColumn", "ApiReferenceLink": null, @@ -262821,7 +262821,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListColumn", "ApiReferenceLink": null, @@ -262850,7 +262850,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListColumnSourceColumn", "ApiReferenceLink": null, @@ -262865,7 +262865,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentType", "ApiReferenceLink": null, @@ -262880,7 +262880,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentType", "ApiReferenceLink": null, @@ -262894,7 +262894,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -262909,7 +262909,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -262938,7 +262938,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -262953,7 +262953,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -262982,7 +262982,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -262997,7 +262997,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -263026,7 +263026,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -263041,7 +263041,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", @@ -263071,7 +263071,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListCreatedByUser", "ApiReferenceLink": null, @@ -263086,7 +263086,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -263101,7 +263101,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -263130,7 +263130,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListDrive", "ApiReferenceLink": null, @@ -263145,7 +263145,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItem", "ApiReferenceLink": null, @@ -263160,7 +263160,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItem", "ApiReferenceLink": null, @@ -263174,7 +263174,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemActivityByInterval", "ApiReferenceLink": null, @@ -263191,7 +263191,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemAnalytic", "ApiReferenceLink": null, @@ -263206,7 +263206,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemCreatedByUser", "ApiReferenceLink": null, @@ -263221,7 +263221,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -263236,7 +263236,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -263265,7 +263265,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", @@ -263282,7 +263282,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -263297,7 +263297,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -263326,7 +263326,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -263341,7 +263341,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemDriveItem", "ApiReferenceLink": null, @@ -263371,7 +263371,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemField", "ApiReferenceLink": null, @@ -263386,7 +263386,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -263401,7 +263401,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemVersion", "ApiReferenceLink": null, @@ -263430,7 +263430,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListItemVersionField", "ApiReferenceLink": null, @@ -263445,7 +263445,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListOperation", "ApiReferenceLink": null, @@ -263460,7 +263460,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListOperation", "ApiReferenceLink": null, @@ -263489,7 +263489,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListSubscription", "ApiReferenceLink": null, @@ -263504,7 +263504,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveListSubscription", "ApiReferenceLink": null, @@ -263533,7 +263533,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRoot", "ApiReferenceLink": null, @@ -263548,7 +263548,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", @@ -263565,7 +263565,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootAnalytic", "ApiReferenceLink": null, @@ -263580,7 +263580,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -263595,7 +263595,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -263609,7 +263609,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -263638,7 +263638,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -263653,7 +263653,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticTime", "ApiReferenceLink": null, @@ -263668,7 +263668,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootChild", "ApiReferenceLink": null, @@ -263683,7 +263683,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootChild", "ApiReferenceLink": null, @@ -263742,7 +263742,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootCreatedByUser", "ApiReferenceLink": null, @@ -263757,7 +263757,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -263772,7 +263772,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -263801,7 +263801,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", @@ -263818,7 +263818,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootItemLastModifiedByUser", "ApiReferenceLink": null, @@ -263833,7 +263833,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -263848,7 +263848,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -263877,7 +263877,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootLastModifiedByUser", "ApiReferenceLink": null, @@ -263892,7 +263892,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -263907,7 +263907,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -263936,7 +263936,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItem", "ApiReferenceLink": null, @@ -263951,7 +263951,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemActivityByInterval", "ApiReferenceLink": null, @@ -263968,7 +263968,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemAnalytic", "ApiReferenceLink": null, @@ -263983,7 +263983,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemCreatedByUser", "ApiReferenceLink": null, @@ -263998,7 +263998,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -264013,7 +264013,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -264042,7 +264042,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -264057,7 +264057,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -264086,7 +264086,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -264101,7 +264101,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDriveItem", "ApiReferenceLink": null, @@ -264131,7 +264131,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemField", "ApiReferenceLink": null, @@ -264146,7 +264146,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -264161,7 +264161,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemVersion", "ApiReferenceLink": null, @@ -264190,7 +264190,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -264205,7 +264205,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootPermission", "ApiReferenceLink": null, @@ -264220,7 +264220,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootPermission", "ApiReferenceLink": null, @@ -264249,7 +264249,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -264264,7 +264264,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -264279,7 +264279,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootSubscription", "ApiReferenceLink": null, @@ -264308,7 +264308,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -264323,7 +264323,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootThumbnail", "ApiReferenceLink": null, @@ -264352,7 +264352,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootVersion", "ApiReferenceLink": null, @@ -264367,7 +264367,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveRootVersion", "ApiReferenceLink": null, @@ -264411,7 +264411,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveSpecial", "ApiReferenceLink": null, @@ -264426,7 +264426,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupDriveSpecial", "ApiReferenceLink": null, @@ -264549,7 +264549,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventAttachment", "ApiReferenceLink": null, @@ -264564,7 +264564,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventAttachment", "ApiReferenceLink": null, @@ -264640,7 +264640,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", @@ -264680,7 +264680,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventExtension", "ApiReferenceLink": null, @@ -264695,7 +264695,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventExtension", "ApiReferenceLink": null, @@ -264770,7 +264770,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventInstanceAttachment", "ApiReferenceLink": null, @@ -264785,7 +264785,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventInstanceAttachment", "ApiReferenceLink": null, @@ -264861,7 +264861,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -264876,7 +264876,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupEventInstanceExtension", "ApiReferenceLink": null, @@ -264905,7 +264905,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupExtension", "ApiReferenceLink": null, @@ -264920,7 +264920,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupExtension", "ApiReferenceLink": null, @@ -264949,7 +264949,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-get?view=graph-rest-1.0", @@ -264983,7 +264983,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupLifecyclePolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-list?view=graph-rest-1.0", @@ -265014,7 +265014,7 @@ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupLifecyclePolicyByGroup", "ApiReferenceLink": null, @@ -265076,7 +265076,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMember", "ApiReferenceLink": null, @@ -265131,7 +265131,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsApplication", "ApiReferenceLink": null, @@ -265146,7 +265146,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsApplication", "ApiReferenceLink": null, @@ -265160,7 +265160,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsDevice", "ApiReferenceLink": null, @@ -265175,7 +265175,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsDevice", "ApiReferenceLink": null, @@ -265189,7 +265189,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsGroup", "ApiReferenceLink": null, @@ -265204,7 +265204,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsGroup", "ApiReferenceLink": null, @@ -265218,7 +265218,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsOrgContact", "ApiReferenceLink": null, @@ -265233,7 +265233,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsOrgContact", "ApiReferenceLink": null, @@ -265247,7 +265247,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -265262,7 +265262,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -265276,7 +265276,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsUser", "ApiReferenceLink": null, @@ -265291,7 +265291,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberAsUser", "ApiReferenceLink": null, @@ -265718,7 +265718,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberOf", "ApiReferenceLink": null, @@ -265733,7 +265733,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberOf", "ApiReferenceLink": null, @@ -265780,7 +265780,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -265795,7 +265795,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -265809,7 +265809,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberOfAsGroup", "ApiReferenceLink": null, @@ -265824,7 +265824,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberOfAsGroup", "ApiReferenceLink": null, @@ -265916,7 +265916,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseError", "ApiReferenceLink": null, @@ -265931,7 +265931,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseError", "ApiReferenceLink": null, @@ -265945,7 +265945,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsApplication", "ApiReferenceLink": null, @@ -265960,7 +265960,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsApplication", "ApiReferenceLink": null, @@ -265974,7 +265974,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsDevice", "ApiReferenceLink": null, @@ -265989,7 +265989,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsDevice", "ApiReferenceLink": null, @@ -266003,7 +266003,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsGroup", "ApiReferenceLink": null, @@ -266018,7 +266018,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsGroup", "ApiReferenceLink": null, @@ -266032,7 +266032,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsOrgContact", "ApiReferenceLink": null, @@ -266047,7 +266047,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsOrgContact", "ApiReferenceLink": null, @@ -266061,7 +266061,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsServicePrincipal", "ApiReferenceLink": null, @@ -266076,7 +266076,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsServicePrincipal", "ApiReferenceLink": null, @@ -266090,7 +266090,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsUser", "ApiReferenceLink": null, @@ -266105,7 +266105,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsUser", "ApiReferenceLink": null, @@ -266224,7 +266224,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -266280,7 +266280,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteNotebook", "ApiReferenceLink": null, @@ -266449,7 +266449,7 @@ "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteNotebookSection", "ApiReferenceLink": null, @@ -266504,7 +266504,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -266559,7 +266559,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteOperation", "ApiReferenceLink": null, @@ -266630,7 +266630,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenotePage", "ApiReferenceLink": null, @@ -266678,7 +266678,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenotePage", "ApiReferenceLink": null, @@ -266844,7 +266844,7 @@ "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteResource", "ApiReferenceLink": null, @@ -266922,7 +266922,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteSection", "ApiReferenceLink": null, @@ -266978,7 +266978,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteSection", "ApiReferenceLink": null, @@ -267089,7 +267089,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -267145,7 +267145,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteSectionGroup", "ApiReferenceLink": null, @@ -267259,7 +267259,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -267314,7 +267314,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOnenoteSectionPage", "ApiReferenceLink": null, @@ -267361,7 +267361,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwner", "ApiReferenceLink": null, @@ -267416,7 +267416,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsApplication", "ApiReferenceLink": null, @@ -267431,7 +267431,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsApplication", "ApiReferenceLink": null, @@ -267445,7 +267445,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsDevice", "ApiReferenceLink": null, @@ -267460,7 +267460,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsDevice", "ApiReferenceLink": null, @@ -267474,7 +267474,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsGroup", "ApiReferenceLink": null, @@ -267489,7 +267489,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsGroup", "ApiReferenceLink": null, @@ -267503,7 +267503,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsOrgContact", "ApiReferenceLink": null, @@ -267518,7 +267518,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsOrgContact", "ApiReferenceLink": null, @@ -267532,7 +267532,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -267547,7 +267547,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -267561,7 +267561,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsUser", "ApiReferenceLink": null, @@ -267576,7 +267576,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupOwnerAsUser", "ApiReferenceLink": null, @@ -267791,7 +267791,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPermissionGrant", "ApiReferenceLink": null, @@ -267806,7 +267806,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPermissionGrant", "ApiReferenceLink": null, @@ -268024,7 +268024,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPlanner", "ApiReferenceLink": null, @@ -268039,7 +268039,7 @@ "OutputType": "IMicrosoftGraphPlannerGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPlannerPlan", "ApiReferenceLink": null, @@ -268054,7 +268054,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPlannerPlan", "ApiReferenceLink": null, @@ -268117,7 +268117,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPlannerPlanBucket", "ApiReferenceLink": null, @@ -268195,7 +268195,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPlannerPlanDetail", "ApiReferenceLink": null, @@ -268210,7 +268210,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupPlannerPlanTask", "ApiReferenceLink": null, @@ -268318,7 +268318,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSetting", "ApiReferenceLink": null, @@ -268368,7 +268368,7 @@ "OutputType": "IMicrosoftGraphGroupSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSetting", "ApiReferenceLink": null, @@ -268511,7 +268511,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSettingTemplateDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0", @@ -268542,7 +268542,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSettingTemplateGroupSettingTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/groupsettingtemplate-get?view=graph-rest-1.0", @@ -268574,7 +268574,7 @@ "OutputType": "IMicrosoftGraphGroupSettingTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSettingTemplateGroupSettingTemplate", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/groupsettingtemplate-list?view=graph-rest-1.0", @@ -268639,7 +268639,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSite", "ApiReferenceLink": null, @@ -268654,7 +268654,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSite", "ApiReferenceLink": null, @@ -268668,7 +268668,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteActivityByInterval", "ApiReferenceLink": null, @@ -268685,7 +268685,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalytic", "ApiReferenceLink": null, @@ -268700,7 +268700,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -268715,7 +268715,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -268729,7 +268729,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -268744,7 +268744,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -268773,7 +268773,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItem", "ApiReferenceLink": null, @@ -268818,7 +268818,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -268833,7 +268833,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteAnalyticTime", "ApiReferenceLink": null, @@ -268848,7 +268848,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteApplicableContentTypeForList", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0", @@ -268878,7 +268878,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteColumn", "ApiReferenceLink": null, @@ -268893,7 +268893,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteColumn", "ApiReferenceLink": null, @@ -268922,7 +268922,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteColumnSourceColumn", "ApiReferenceLink": null, @@ -268937,7 +268937,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentType", "ApiReferenceLink": null, @@ -268952,7 +268952,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentType", "ApiReferenceLink": null, @@ -268966,7 +268966,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeBase", "ApiReferenceLink": null, @@ -268983,7 +268983,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeBaseType", "ApiReferenceLink": null, @@ -269000,7 +269000,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeBaseType", "ApiReferenceLink": null, @@ -269032,7 +269032,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -269047,7 +269047,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumn", "ApiReferenceLink": null, @@ -269076,7 +269076,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -269091,7 +269091,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -269120,7 +269120,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnPosition", "ApiReferenceLink": null, @@ -269135,7 +269135,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnPosition", "ApiReferenceLink": null, @@ -269164,7 +269164,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -269179,7 +269179,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", @@ -269224,7 +269224,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteCreatedByUser", "ApiReferenceLink": null, @@ -269239,7 +269239,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -269254,7 +269254,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -269283,7 +269283,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteDefaultDrive", "ApiReferenceLink": null, @@ -269298,7 +269298,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-1.0", @@ -269313,7 +269313,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteDrive", "ApiReferenceLink": null, @@ -269328,7 +269328,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteDrive", "ApiReferenceLink": null, @@ -269357,7 +269357,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteExternalColumn", "ApiReferenceLink": null, @@ -269372,7 +269372,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteExternalColumn", "ApiReferenceLink": null, @@ -269401,7 +269401,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPath", "ApiReferenceLink": null, @@ -269415,7 +269415,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -269432,7 +269432,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathApplicableContentTypeForList", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0", @@ -269447,7 +269447,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathColumn", "ApiReferenceLink": null, @@ -269462,7 +269462,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathContentType", "ApiReferenceLink": null, @@ -269477,7 +269477,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathDrive", "ApiReferenceLink": null, @@ -269494,7 +269494,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathDrive", "ApiReferenceLink": null, @@ -269509,7 +269509,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathExternalColumn", "ApiReferenceLink": null, @@ -269524,7 +269524,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathItem", "ApiReferenceLink": null, @@ -269539,7 +269539,7 @@ "OutputType": "IMicrosoftGraphBaseItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathList", "ApiReferenceLink": null, @@ -269553,7 +269553,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -269570,7 +269570,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathOperation", "ApiReferenceLink": null, @@ -269585,7 +269585,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathPage", "ApiReferenceLink": null, @@ -269600,7 +269600,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathPermission", "ApiReferenceLink": null, @@ -269615,7 +269615,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathSite", "ApiReferenceLink": null, @@ -269630,7 +269630,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -269647,7 +269647,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -269662,7 +269662,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetGraphBPrePathActivityByInterval", "ApiReferenceLink": null, @@ -269694,7 +269694,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetGraphBPrePathCreatedByUser", "ApiReferenceLink": null, @@ -269711,7 +269711,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteGetGraphBPrePathLastModifiedByUser", "ApiReferenceLink": null, @@ -269728,7 +269728,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteItem", "ApiReferenceLink": null, @@ -269743,7 +269743,7 @@ "OutputType": "IMicrosoftGraphBaseItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteItem", "ApiReferenceLink": null, @@ -269772,7 +269772,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteItemLastModifiedByUser", "ApiReferenceLink": null, @@ -269787,7 +269787,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -269802,7 +269802,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -269831,7 +269831,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteLastModifiedByUser", "ApiReferenceLink": null, @@ -269848,7 +269848,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -269865,7 +269865,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -269897,7 +269897,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteList", "ApiReferenceLink": null, @@ -269912,7 +269912,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteList", "ApiReferenceLink": null, @@ -269926,7 +269926,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListColumn", "ApiReferenceLink": null, @@ -269941,7 +269941,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListColumn", "ApiReferenceLink": null, @@ -269970,7 +269970,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListColumnSourceColumn", "ApiReferenceLink": null, @@ -269985,7 +269985,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentType", "ApiReferenceLink": null, @@ -270000,7 +270000,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentType", "ApiReferenceLink": null, @@ -270014,7 +270014,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -270029,7 +270029,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -270058,7 +270058,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -270073,7 +270073,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -270102,7 +270102,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -270117,7 +270117,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -270146,7 +270146,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -270161,7 +270161,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", @@ -270206,7 +270206,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListCreatedByUser", "ApiReferenceLink": null, @@ -270221,7 +270221,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -270236,7 +270236,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -270265,7 +270265,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListDrive", "ApiReferenceLink": null, @@ -270280,7 +270280,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItem", "ApiReferenceLink": null, @@ -270295,7 +270295,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItem", "ApiReferenceLink": null, @@ -270309,7 +270309,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemActivityByInterval", "ApiReferenceLink": null, @@ -270326,7 +270326,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemAnalytic", "ApiReferenceLink": null, @@ -270341,7 +270341,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemCreatedByUser", "ApiReferenceLink": null, @@ -270356,7 +270356,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -270371,7 +270371,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -270400,7 +270400,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", @@ -270417,7 +270417,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -270432,7 +270432,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -270461,7 +270461,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -270476,7 +270476,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemDriveItem", "ApiReferenceLink": null, @@ -270506,7 +270506,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemField", "ApiReferenceLink": null, @@ -270521,7 +270521,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -270536,7 +270536,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemVersion", "ApiReferenceLink": null, @@ -270565,7 +270565,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListItemVersionField", "ApiReferenceLink": null, @@ -270580,7 +270580,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListOperation", "ApiReferenceLink": null, @@ -270595,7 +270595,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListOperation", "ApiReferenceLink": null, @@ -270624,7 +270624,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListSubscription", "ApiReferenceLink": null, @@ -270639,7 +270639,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteListSubscription", "ApiReferenceLink": null, @@ -270668,7 +270668,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenote", "ApiReferenceLink": null, @@ -270683,7 +270683,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -270698,7 +270698,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -270727,7 +270727,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -270742,7 +270742,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -270771,7 +270771,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -270788,7 +270788,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -270820,7 +270820,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupParentNotebook", "ApiReferenceLink": null, @@ -270835,7 +270835,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup", "ApiReferenceLink": null, @@ -270850,7 +270850,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -270865,7 +270865,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSection", "ApiReferenceLink": null, @@ -270894,7 +270894,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -270909,7 +270909,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", "ApiReferenceLink": null, @@ -270953,7 +270953,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook", "ApiReferenceLink": null, @@ -270968,7 +270968,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection", "ApiReferenceLink": null, @@ -270983,7 +270983,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook", "ApiReferenceLink": null, @@ -270998,7 +270998,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup", "ApiReferenceLink": null, @@ -271013,7 +271013,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -271028,7 +271028,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPage", "ApiReferenceLink": null, @@ -271072,7 +271072,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPageParentNotebook", "ApiReferenceLink": null, @@ -271087,7 +271087,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPageParentSection", "ApiReferenceLink": null, @@ -271102,7 +271102,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionParentNotebook", "ApiReferenceLink": null, @@ -271117,7 +271117,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionParentSectionGroup", "ApiReferenceLink": null, @@ -271132,7 +271132,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -271147,7 +271147,7 @@ "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteOperation", "ApiReferenceLink": null, @@ -271176,7 +271176,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -271191,7 +271191,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenotePage", "ApiReferenceLink": null, @@ -271235,7 +271235,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenotePageParentNotebook", "ApiReferenceLink": null, @@ -271250,7 +271250,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenotePageParentSection", "ApiReferenceLink": null, @@ -271265,7 +271265,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -271280,7 +271280,7 @@ "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteResource", "ApiReferenceLink": null, @@ -271324,7 +271324,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -271339,7 +271339,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSection", "ApiReferenceLink": null, @@ -271368,7 +271368,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -271385,7 +271385,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -271417,7 +271417,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupParentNotebook", "ApiReferenceLink": null, @@ -271432,7 +271432,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupParentSectionGroup", "ApiReferenceLink": null, @@ -271447,7 +271447,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -271462,7 +271462,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -271491,7 +271491,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -271506,7 +271506,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPage", "ApiReferenceLink": null, @@ -271550,7 +271550,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPageParentNotebook", "ApiReferenceLink": null, @@ -271565,7 +271565,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPageParentSection", "ApiReferenceLink": null, @@ -271580,7 +271580,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionParentNotebook", "ApiReferenceLink": null, @@ -271595,7 +271595,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionParentSectionGroup", "ApiReferenceLink": null, @@ -271610,7 +271610,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -271625,7 +271625,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -271669,7 +271669,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPageParentNotebook", "ApiReferenceLink": null, @@ -271684,7 +271684,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPageParentSection", "ApiReferenceLink": null, @@ -271699,7 +271699,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionParentNotebook", "ApiReferenceLink": null, @@ -271714,7 +271714,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionParentSectionGroup", "ApiReferenceLink": null, @@ -271729,7 +271729,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOperation", "ApiReferenceLink": null, @@ -271744,7 +271744,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteOperation", "ApiReferenceLink": null, @@ -271773,7 +271773,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePage", "ApiReferenceLink": null, @@ -271788,7 +271788,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePage", "ApiReferenceLink": null, @@ -271802,7 +271802,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePage", "ApiReferenceLink": null, @@ -271817,7 +271817,7 @@ "OutputType": "IMicrosoftGraphSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePage", "ApiReferenceLink": null, @@ -271831,7 +271831,7 @@ "OutputType": "IMicrosoftGraphSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -271846,7 +271846,7 @@ "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -271861,7 +271861,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -271875,7 +271875,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -271890,7 +271890,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -271919,7 +271919,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -271934,7 +271934,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -271978,7 +271978,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -271993,7 +271993,7 @@ "OutputType": "IMicrosoftGraphVerticalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -272008,7 +272008,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -272037,7 +272037,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCreatedByUser", "ApiReferenceLink": null, @@ -272052,7 +272052,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -272067,7 +272067,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -272096,7 +272096,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageLastModifiedByUser", "ApiReferenceLink": null, @@ -272111,7 +272111,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -272126,7 +272126,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -272155,7 +272155,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -272170,7 +272170,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -272229,7 +272229,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageCreatedByUser", "ApiReferenceLink": null, @@ -272244,7 +272244,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -272259,7 +272259,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -272288,7 +272288,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageLastModifiedByUser", "ApiReferenceLink": null, @@ -272303,7 +272303,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -272318,7 +272318,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePageLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -272392,7 +272392,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePermission", "ApiReferenceLink": null, @@ -272407,7 +272407,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSitePermission", "ApiReferenceLink": null, @@ -272436,7 +272436,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStore", "ApiReferenceLink": null, @@ -272453,7 +272453,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStore", "ApiReferenceLink": null, @@ -272482,7 +272482,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -272499,7 +272499,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroup", "ApiReferenceLink": null, @@ -272531,7 +272531,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -272548,7 +272548,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -272563,7 +272563,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -272584,7 +272584,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -272622,7 +272622,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -272643,7 +272643,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -272681,7 +272681,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -272702,7 +272702,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelationSet", "ApiReferenceLink": null, @@ -272723,7 +272723,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm", "ApiReferenceLink": null, @@ -272744,7 +272744,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildSet", "ApiReferenceLink": null, @@ -272782,7 +272782,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -272799,7 +272799,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -272816,7 +272816,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -272848,7 +272848,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelationFromTerm", "ApiReferenceLink": null, @@ -272865,7 +272865,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelationSet", "ApiReferenceLink": null, @@ -272882,7 +272882,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelationToTerm", "ApiReferenceLink": null, @@ -272899,7 +272899,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -272916,7 +272916,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -272931,7 +272931,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -272948,7 +272948,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -272980,7 +272980,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -272997,7 +272997,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -273029,7 +273029,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -273046,7 +273046,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelationSet", "ApiReferenceLink": null, @@ -273063,7 +273063,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -273080,7 +273080,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildSet", "ApiReferenceLink": null, @@ -273114,7 +273114,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -273131,7 +273131,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -273163,7 +273163,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -273180,7 +273180,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelationSet", "ApiReferenceLink": null, @@ -273197,7 +273197,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelationToTerm", "ApiReferenceLink": null, @@ -273214,7 +273214,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermSet", "ApiReferenceLink": null, @@ -273231,7 +273231,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -273248,7 +273248,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSet", "ApiReferenceLink": null, @@ -273263,7 +273263,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -273284,7 +273284,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -273322,7 +273322,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -273343,7 +273343,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -273381,7 +273381,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -273402,7 +273402,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelationSet", "ApiReferenceLink": null, @@ -273423,7 +273423,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelationToTerm", "ApiReferenceLink": null, @@ -273444,7 +273444,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildSet", "ApiReferenceLink": null, @@ -273482,7 +273482,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -273499,7 +273499,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -273516,7 +273516,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -273531,7 +273531,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -273552,7 +273552,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -273590,7 +273590,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -273611,7 +273611,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -273649,7 +273649,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -273670,7 +273670,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet", "ApiReferenceLink": null, @@ -273691,7 +273691,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm", "ApiReferenceLink": null, @@ -273712,7 +273712,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildSet", "ApiReferenceLink": null, @@ -273750,7 +273750,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -273767,7 +273767,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -273799,7 +273799,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelationFromTerm", "ApiReferenceLink": null, @@ -273816,7 +273816,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelationSet", "ApiReferenceLink": null, @@ -273833,7 +273833,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelationToTerm", "ApiReferenceLink": null, @@ -273850,7 +273850,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -273867,7 +273867,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -273882,7 +273882,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -273899,7 +273899,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -273931,7 +273931,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -273948,7 +273948,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -273980,7 +273980,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -273997,7 +273997,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationSet", "ApiReferenceLink": null, @@ -274014,7 +274014,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -274031,7 +274031,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildSet", "ApiReferenceLink": null, @@ -274065,7 +274065,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -274082,7 +274082,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -274114,7 +274114,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -274131,7 +274131,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationSet", "ApiReferenceLink": null, @@ -274148,7 +274148,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationToTerm", "ApiReferenceLink": null, @@ -274165,7 +274165,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermSet", "ApiReferenceLink": null, @@ -274182,7 +274182,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -274199,7 +274199,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -274231,7 +274231,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelationFromTerm", "ApiReferenceLink": null, @@ -274248,7 +274248,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelationSet", "ApiReferenceLink": null, @@ -274265,7 +274265,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelationToTerm", "ApiReferenceLink": null, @@ -274282,7 +274282,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -274299,7 +274299,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -274314,7 +274314,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -274331,7 +274331,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -274363,7 +274363,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -274380,7 +274380,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -274412,7 +274412,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -274429,7 +274429,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelationSet", "ApiReferenceLink": null, @@ -274446,7 +274446,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -274463,7 +274463,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildSet", "ApiReferenceLink": null, @@ -274497,7 +274497,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -274514,7 +274514,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -274546,7 +274546,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -274563,7 +274563,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelationSet", "ApiReferenceLink": null, @@ -274580,7 +274580,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelationToTerm", "ApiReferenceLink": null, @@ -274597,7 +274597,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermSet", "ApiReferenceLink": null, @@ -274614,7 +274614,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSubSite", "ApiReferenceLink": null, @@ -274629,7 +274629,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupSubSite", "ApiReferenceLink": null, @@ -274658,7 +274658,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeam", "ApiReferenceLink": null, @@ -274673,7 +274673,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannel", "ApiReferenceLink": null, @@ -274688,7 +274688,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannel", "ApiReferenceLink": null, @@ -274717,7 +274717,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelFileFolder", "ApiReferenceLink": null, @@ -274747,7 +274747,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMember", "ApiReferenceLink": null, @@ -274762,7 +274762,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMember", "ApiReferenceLink": null, @@ -274791,7 +274791,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -274806,7 +274806,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessage", "ApiReferenceLink": null, @@ -274835,7 +274835,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -274852,7 +274852,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -274881,7 +274881,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -274896,7 +274896,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReply", "ApiReferenceLink": null, @@ -274925,7 +274925,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -274942,7 +274942,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -274971,7 +274971,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -274988,7 +274988,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -275002,7 +275002,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -275017,7 +275017,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -275061,7 +275061,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelTab", "ApiReferenceLink": null, @@ -275076,7 +275076,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelTab", "ApiReferenceLink": null, @@ -275105,7 +275105,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamChannelTabTeamApp", "ApiReferenceLink": null, @@ -275120,7 +275120,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamGroup", "ApiReferenceLink": null, @@ -275135,7 +275135,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -275164,7 +275164,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamIncomingChannel", "ApiReferenceLink": null, @@ -275179,7 +275179,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamIncomingChannel", "ApiReferenceLink": null, @@ -275208,7 +275208,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamInstalledApp", "ApiReferenceLink": null, @@ -275223,7 +275223,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamInstalledApp", "ApiReferenceLink": null, @@ -275252,7 +275252,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamInstalledAppTeamApp", "ApiReferenceLink": null, @@ -275267,7 +275267,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -275282,7 +275282,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamMember", "ApiReferenceLink": null, @@ -275297,7 +275297,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamMember", "ApiReferenceLink": null, @@ -275326,7 +275326,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamOperation", "ApiReferenceLink": null, @@ -275341,7 +275341,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamOperation", "ApiReferenceLink": null, @@ -275370,7 +275370,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -275385,7 +275385,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPermissionGrant", "ApiReferenceLink": null, @@ -275414,7 +275414,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPhoto", "ApiReferenceLink": null, @@ -275444,7 +275444,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannel", "ApiReferenceLink": null, @@ -275459,7 +275459,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelFileFolder", "ApiReferenceLink": null, @@ -275489,7 +275489,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -275504,7 +275504,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -275533,7 +275533,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -275548,7 +275548,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -275577,7 +275577,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -275594,7 +275594,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -275623,7 +275623,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -275638,7 +275638,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -275667,7 +275667,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -275684,7 +275684,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -275713,7 +275713,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -275730,7 +275730,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -275744,7 +275744,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -275759,7 +275759,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -275803,7 +275803,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -275818,7 +275818,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -275847,7 +275847,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelTabTeamApp", "ApiReferenceLink": null, @@ -275862,7 +275862,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamSchedule", "ApiReferenceLink": null, @@ -275877,7 +275877,7 @@ "OutputType": "IMicrosoftGraphSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -275892,7 +275892,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -275921,7 +275921,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -275936,7 +275936,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -275950,7 +275950,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -275965,7 +275965,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -276097,7 +276097,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -276112,7 +276112,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -276273,7 +276273,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamTag", "ApiReferenceLink": null, @@ -276288,7 +276288,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamTag", "ApiReferenceLink": null, @@ -276317,7 +276317,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamTagMember", "ApiReferenceLink": null, @@ -276332,7 +276332,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamTagMember", "ApiReferenceLink": null, @@ -276361,7 +276361,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTeamTemplate", "ApiReferenceLink": null, @@ -276519,7 +276519,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPost", "ApiReferenceLink": null, @@ -276569,7 +276569,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPost", "ApiReferenceLink": null, @@ -276616,7 +276616,7 @@ "OutputType": "IMicrosoftGraphPost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostAttachment", "ApiReferenceLink": null, @@ -276631,7 +276631,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostAttachment", "ApiReferenceLink": null, @@ -276774,7 +276774,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostExtension", "ApiReferenceLink": null, @@ -276789,7 +276789,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostExtension", "ApiReferenceLink": null, @@ -276818,7 +276818,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -276833,7 +276833,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToAttachment", "ApiReferenceLink": null, @@ -276862,7 +276862,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -276877,7 +276877,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToExtension", "ApiReferenceLink": null, @@ -276906,7 +276906,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMember", "ApiReferenceLink": null, @@ -276921,7 +276921,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMember", "ApiReferenceLink": null, @@ -276976,7 +276976,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsApplication", "ApiReferenceLink": null, @@ -276991,7 +276991,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsApplication", "ApiReferenceLink": null, @@ -277005,7 +277005,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsDevice", "ApiReferenceLink": null, @@ -277020,7 +277020,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsDevice", "ApiReferenceLink": null, @@ -277034,7 +277034,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsGroup", "ApiReferenceLink": null, @@ -277049,7 +277049,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsGroup", "ApiReferenceLink": null, @@ -277063,7 +277063,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsOrgContact", "ApiReferenceLink": null, @@ -277078,7 +277078,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsOrgContact", "ApiReferenceLink": null, @@ -277092,7 +277092,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -277107,7 +277107,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsServicePrincipal", "ApiReferenceLink": null, @@ -277121,7 +277121,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsUser", "ApiReferenceLink": null, @@ -277136,7 +277136,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsUser", "ApiReferenceLink": null, @@ -277296,7 +277296,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOf", "ApiReferenceLink": null, @@ -277311,7 +277311,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOf", "ApiReferenceLink": null, @@ -277358,7 +277358,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -277373,7 +277373,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -277387,7 +277387,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -277402,7 +277402,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -277494,7 +277494,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityApiConnector", "ApiReferenceLink": null, @@ -277509,7 +277509,7 @@ "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityApiConnector", "ApiReferenceLink": null, @@ -277537,7 +277537,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -277569,7 +277569,7 @@ "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityAuthenticationEventListener", "ApiReferenceLink": null, @@ -277631,7 +277631,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -277663,7 +277663,7 @@ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlow", "ApiReferenceLink": null, @@ -277694,7 +277694,7 @@ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowApiConnectorConfiguration", "ApiReferenceLink": null, @@ -277740,7 +277740,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowIdentityProvider", "ApiReferenceLink": null, @@ -277755,7 +277755,7 @@ "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowIdentityProvider", "ApiReferenceLink": null, @@ -277801,7 +277801,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -277833,7 +277833,7 @@ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguage", "ApiReferenceLink": null, @@ -277896,7 +277896,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -277928,7 +277928,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPage", "ApiReferenceLink": null, @@ -278023,7 +278023,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -278055,7 +278055,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePage", "ApiReferenceLink": null, @@ -278150,7 +278150,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowPostAttributeCollection", "ApiReferenceLink": null, @@ -278180,7 +278180,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowPostFederationSignup", "ApiReferenceLink": null, @@ -278210,7 +278210,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -278242,7 +278242,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignment", "ApiReferenceLink": null, @@ -278337,7 +278337,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute", "ApiReferenceLink": null, @@ -278352,7 +278352,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -278367,7 +278367,7 @@ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReference", "ApiReferenceLink": null, @@ -278429,7 +278429,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -278444,7 +278444,7 @@ "OutputType": "IMicrosoftGraphNamedLocation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessNamedLocation", "ApiReferenceLink": null, @@ -278472,7 +278472,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -278487,7 +278487,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessPolicy", "ApiReferenceLink": null, @@ -278515,7 +278515,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessTemplate", "ApiReferenceLink": null, @@ -278530,7 +278530,7 @@ "OutputType": "IMicrosoftGraphConditionalAccessTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityConditionalAccessTemplate", "ApiReferenceLink": null, @@ -278558,7 +278558,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -278590,7 +278590,7 @@ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityCustomAuthenticationExtension", "ApiReferenceLink": null, @@ -278652,7 +278652,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -278684,7 +278684,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinition", "ApiReferenceLink": null, @@ -278746,7 +278746,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -278778,7 +278778,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstance", "ApiReferenceLink": null, @@ -278809,7 +278809,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -278824,7 +278824,7 @@ "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", "ApiReferenceLink": null, @@ -278919,7 +278919,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -278951,7 +278951,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", "ApiReferenceLink": null, @@ -279014,7 +279014,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -279029,7 +279029,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", "ApiReferenceLink": null, @@ -279058,7 +279058,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -279090,7 +279090,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", "ApiReferenceLink": null, @@ -279153,7 +279153,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -279185,7 +279185,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", "ApiReferenceLink": null, @@ -279248,7 +279248,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -279263,7 +279263,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", "ApiReferenceLink": null, @@ -279277,7 +279277,7 @@ "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -279292,7 +279292,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinition", "ApiReferenceLink": null, @@ -279320,7 +279320,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -279335,7 +279335,7 @@ "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", "ApiReferenceLink": null, @@ -279364,7 +279364,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -279396,7 +279396,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequest", "ApiReferenceLink": null, @@ -279458,7 +279458,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -279490,7 +279490,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest", "ApiReferenceLink": null, @@ -279521,7 +279521,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval", "ApiReferenceLink": null, @@ -279536,7 +279536,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", "ApiReferenceLink": null, @@ -279551,7 +279551,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", "ApiReferenceLink": null, @@ -279612,7 +279612,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -279644,7 +279644,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflow", "ApiReferenceLink": null, @@ -279706,7 +279706,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCreatedBy", "ApiReferenceLink": null, @@ -279721,7 +279721,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -279736,7 +279736,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError", "ApiReferenceLink": null, @@ -279765,7 +279765,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -279797,7 +279797,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", "ApiReferenceLink": null, @@ -279859,7 +279859,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy", "ApiReferenceLink": null, @@ -279874,7 +279874,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -279889,7 +279889,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError", "ApiReferenceLink": null, @@ -279918,7 +279918,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy", "ApiReferenceLink": null, @@ -279933,7 +279933,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -279948,7 +279948,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError", "ApiReferenceLink": null, @@ -279977,7 +279977,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItem", "ApiReferenceLink": null, @@ -279991,7 +279991,7 @@ "OutputType": "IMicrosoftGraphDeletedItemContainer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": null, @@ -280023,7 +280023,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", "ApiReferenceLink": null, @@ -280085,7 +280085,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy", "ApiReferenceLink": null, @@ -280100,7 +280100,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope", "ApiReferenceLink": null, @@ -280115,7 +280115,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope", "ApiReferenceLink": null, @@ -280129,7 +280129,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy", "ApiReferenceLink": null, @@ -280144,7 +280144,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun", "ApiReferenceLink": null, @@ -280159,7 +280159,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun", "ApiReferenceLink": null, @@ -280173,7 +280173,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -280188,7 +280188,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", "ApiReferenceLink": null, @@ -280202,7 +280202,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport", "ApiReferenceLink": null, @@ -280217,7 +280217,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport", "ApiReferenceLink": null, @@ -280231,7 +280231,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -280246,7 +280246,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -280260,7 +280260,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion", "ApiReferenceLink": null, @@ -280275,7 +280275,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion", "ApiReferenceLink": null, @@ -280289,7 +280289,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope", "ApiReferenceLink": null, @@ -280304,7 +280304,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope", "ApiReferenceLink": null, @@ -280367,7 +280367,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedBy", "ApiReferenceLink": null, @@ -280382,7 +280382,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -280397,7 +280397,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError", "ApiReferenceLink": null, @@ -280426,7 +280426,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRun", "ApiReferenceLink": null, @@ -280458,7 +280458,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRun", "ApiReferenceLink": null, @@ -280521,7 +280521,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", "ApiReferenceLink": null, @@ -280536,7 +280536,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", "ApiReferenceLink": null, @@ -280599,7 +280599,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -280614,7 +280614,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -280629,7 +280629,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -280658,7 +280658,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask", "ApiReferenceLink": null, @@ -280673,7 +280673,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", "ApiReferenceLink": null, @@ -280705,7 +280705,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", "ApiReferenceLink": null, @@ -280768,7 +280768,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject", "ApiReferenceLink": null, @@ -280783,7 +280783,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -280798,7 +280798,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -280827,7 +280827,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", "ApiReferenceLink": null, @@ -280842,7 +280842,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", "ApiReferenceLink": null, @@ -280873,7 +280873,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowSetting", "ApiReferenceLink": null, @@ -280904,7 +280904,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -280919,7 +280919,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTask", "ApiReferenceLink": null, @@ -280982,7 +280982,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition", "ApiReferenceLink": null, @@ -281014,7 +281014,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition", "ApiReferenceLink": null, @@ -281076,7 +281076,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult", "ApiReferenceLink": null, @@ -281091,7 +281091,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult", "ApiReferenceLink": null, @@ -281154,7 +281154,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -281169,7 +281169,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -281184,7 +281184,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -281213,7 +281213,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask", "ApiReferenceLink": null, @@ -281228,7 +281228,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReport", "ApiReferenceLink": null, @@ -281243,7 +281243,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReport", "ApiReferenceLink": null, @@ -281306,7 +281306,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTask", "ApiReferenceLink": null, @@ -281321,7 +281321,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition", "ApiReferenceLink": null, @@ -281336,7 +281336,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", "ApiReferenceLink": null, @@ -281351,7 +281351,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", "ApiReferenceLink": null, @@ -281414,7 +281414,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -281429,7 +281429,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -281444,7 +281444,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -281473,7 +281473,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask", "ApiReferenceLink": null, @@ -281488,7 +281488,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplate", "ApiReferenceLink": null, @@ -281520,7 +281520,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplate", "ApiReferenceLink": null, @@ -281582,7 +281582,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask", "ApiReferenceLink": null, @@ -281597,7 +281597,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask", "ApiReferenceLink": null, @@ -281626,7 +281626,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", "ApiReferenceLink": null, @@ -281641,7 +281641,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", "ApiReferenceLink": null, @@ -281670,7 +281670,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -281685,7 +281685,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -281700,7 +281700,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -281729,7 +281729,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask", "ApiReferenceLink": null, @@ -281744,7 +281744,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -281759,7 +281759,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult", "ApiReferenceLink": null, @@ -281822,7 +281822,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject", "ApiReferenceLink": null, @@ -281837,7 +281837,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -281852,7 +281852,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -281881,7 +281881,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", "ApiReferenceLink": null, @@ -281896,7 +281896,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", "ApiReferenceLink": null, @@ -281927,7 +281927,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersion", "ApiReferenceLink": null, @@ -281959,7 +281959,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersion", "ApiReferenceLink": null, @@ -282022,7 +282022,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedBy", "ApiReferenceLink": null, @@ -282037,7 +282037,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting", "ApiReferenceLink": null, @@ -282052,7 +282052,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError", "ApiReferenceLink": null, @@ -282081,7 +282081,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy", "ApiReferenceLink": null, @@ -282096,7 +282096,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting", "ApiReferenceLink": null, @@ -282111,7 +282111,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError", "ApiReferenceLink": null, @@ -282140,7 +282140,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -282172,7 +282172,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTask", "ApiReferenceLink": null, @@ -282235,7 +282235,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", "ApiReferenceLink": null, @@ -282250,7 +282250,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", "ApiReferenceLink": null, @@ -282279,7 +282279,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject", "ApiReferenceLink": null, @@ -282294,7 +282294,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting", "ApiReferenceLink": null, @@ -282309,7 +282309,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError", "ApiReferenceLink": null, @@ -282338,7 +282338,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask", "ApiReferenceLink": null, @@ -282353,7 +282353,7 @@ "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccess", "ApiReferenceLink": null, @@ -282367,7 +282367,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroup", "ApiReferenceLink": null, @@ -282381,7 +282381,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -282396,7 +282396,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", "ApiReferenceLink": null, @@ -282424,7 +282424,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", "ApiReferenceLink": null, @@ -282439,7 +282439,7 @@ "OutputType": "IMicrosoftGraphApprovalStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", "ApiReferenceLink": null, @@ -282468,7 +282468,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -282500,7 +282500,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", "ApiReferenceLink": null, @@ -282531,7 +282531,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing", "ApiReferenceLink": null, @@ -282577,7 +282577,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup", "ApiReferenceLink": null, @@ -282592,7 +282592,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -282621,7 +282621,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -282653,7 +282653,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -282684,7 +282684,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing", "ApiReferenceLink": null, @@ -282730,7 +282730,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup", "ApiReferenceLink": null, @@ -282745,7 +282745,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -282774,7 +282774,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -282789,7 +282789,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal", "ApiReferenceLink": null, @@ -282804,7 +282804,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -282836,7 +282836,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -282867,7 +282867,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing", "ApiReferenceLink": null, @@ -282913,7 +282913,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup", "ApiReferenceLink": null, @@ -282928,7 +282928,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -282957,7 +282957,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -282972,7 +282972,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -282987,7 +282987,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -283019,7 +283019,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", "ApiReferenceLink": null, @@ -283081,7 +283081,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup", "ApiReferenceLink": null, @@ -283096,7 +283096,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -283125,7 +283125,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -283157,7 +283157,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -283219,7 +283219,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup", "ApiReferenceLink": null, @@ -283234,7 +283234,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -283263,7 +283263,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -283278,7 +283278,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal", "ApiReferenceLink": null, @@ -283293,7 +283293,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -283325,7 +283325,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -283387,7 +283387,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup", "ApiReferenceLink": null, @@ -283402,7 +283402,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -283431,7 +283431,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -283446,7 +283446,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -283461,7 +283461,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -283476,7 +283476,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreement", "ApiReferenceLink": null, @@ -283490,7 +283490,7 @@ "OutputType": "IMicrosoftGraphAgreement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -283507,7 +283507,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance", "ApiReferenceLink": null, @@ -283552,7 +283552,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -283567,7 +283567,7 @@ "OutputType": "IMicrosoftGraphAgreementFile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFile", "ApiReferenceLink": null, @@ -283596,7 +283596,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -283611,7 +283611,7 @@ "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", "ApiReferenceLink": null, @@ -283640,7 +283640,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -283655,7 +283655,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", "ApiReferenceLink": null, @@ -283684,7 +283684,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -283699,7 +283699,7 @@ "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion", "ApiReferenceLink": null, @@ -283728,7 +283728,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityProvider", "ApiReferenceLink": null, @@ -283760,7 +283760,7 @@ "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityProvider", "ApiReferenceLink": null, @@ -283822,7 +283822,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -283854,7 +283854,7 @@ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgIdentityUserFlowAttribute", "ApiReferenceLink": null, @@ -283916,7 +283916,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtection", "ApiReferenceLink": null, @@ -283930,7 +283930,7 @@ "OutputType": "IMicrosoftGraphInformationProtection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionBitlocker", "ApiReferenceLink": null, @@ -283944,7 +283944,7 @@ "OutputType": "IMicrosoftGraphBitlocker" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "ApiReferenceLink": null, @@ -283976,7 +283976,7 @@ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "ApiReferenceLink": null, @@ -284038,7 +284038,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -284070,7 +284070,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "ApiReferenceLink": null, @@ -284132,7 +284132,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -284147,7 +284147,7 @@ "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "ApiReferenceLink": null, @@ -284176,7 +284176,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInvitation", "ApiReferenceLink": null, @@ -284191,7 +284191,7 @@ "OutputType": "IMicrosoftGraphInvitation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInvitation", "ApiReferenceLink": null, @@ -284219,7 +284219,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInvitationInvitedUserMailboxSetting", "ApiReferenceLink": null, @@ -284234,7 +284234,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInvitationInvitedUserServiceProvisioningError", "ApiReferenceLink": null, @@ -284263,7 +284263,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInvitationInvitedUserSponsor", "ApiReferenceLink": null, @@ -284278,7 +284278,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgInvitationInvitedUserSponsor", "ApiReferenceLink": null, @@ -284307,7 +284307,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-get?view=graph-rest-1.0", @@ -284347,7 +284347,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOauth2PermissionGrant", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-list?view=graph-rest-1.0", @@ -284425,7 +284425,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOauth2PermissionGrantDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delta?view=graph-rest-1.0", @@ -284464,7 +284464,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganization", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-get?view=graph-rest-1.0", @@ -284512,7 +284512,7 @@ "OutputType": "IMicrosoftGraphOrganization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganization", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-list?view=graph-rest-1.0", @@ -284599,7 +284599,7 @@ "OutputType": "IMicrosoftGraphOrganization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBranding", "ApiReferenceLink": null, @@ -284730,7 +284730,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -284786,7 +284786,7 @@ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationBrandingLocalization", "ApiReferenceLink": null, @@ -285166,7 +285166,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", "ApiReferenceLink": null, @@ -285198,7 +285198,7 @@ "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", "ApiReferenceLink": null, @@ -285348,7 +285348,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationExtension", "ApiReferenceLink": null, @@ -285363,7 +285363,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgOrganizationExtension", "ApiReferenceLink": null, @@ -285426,7 +285426,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceAsRoom", "ApiReferenceLink": null, @@ -285441,7 +285441,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceAsRoom", "ApiReferenceLink": null, @@ -285455,7 +285455,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceAsRoomList", "ApiReferenceLink": null, @@ -285470,7 +285470,7 @@ "OutputType": "IMicrosoftGraphRoomList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceAsRoomList", "ApiReferenceLink": null, @@ -285484,7 +285484,7 @@ "OutputType": "IMicrosoftGraphRoomList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -285499,7 +285499,7 @@ "OutputType": "IMicrosoftGraphRoom" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlaceAsRoomListRoom", "ApiReferenceLink": null, @@ -285570,7 +285570,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlanner", "ApiReferenceLink": null, @@ -285584,7 +285584,7 @@ "OutputType": "IMicrosoftGraphPlanner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerBucket", "ApiReferenceLink": null, @@ -285648,7 +285648,7 @@ "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerBucket", "ApiReferenceLink": null, @@ -285774,7 +285774,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerBucketTask", "ApiReferenceLink": null, @@ -285837,7 +285837,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerPlan", "ApiReferenceLink": null, @@ -285901,7 +285901,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerPlan", "ApiReferenceLink": null, @@ -285964,7 +285964,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerPlanBucket", "ApiReferenceLink": null, @@ -286090,7 +286090,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerPlanDetail", "ApiReferenceLink": null, @@ -286154,7 +286154,7 @@ "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerPlanTask", "ApiReferenceLink": null, @@ -286217,7 +286217,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerTask", "ApiReferenceLink": null, @@ -286281,7 +286281,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerTask", "ApiReferenceLink": null, @@ -286344,7 +286344,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerTaskAssignedToTaskBoardFormat", "ApiReferenceLink": null, @@ -286408,7 +286408,7 @@ "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerTaskBucketTaskBoardFormat", "ApiReferenceLink": null, @@ -286535,7 +286535,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerTaskDetail", "ApiReferenceLink": null, @@ -286599,7 +286599,7 @@ "OutputType": "IMicrosoftGraphPlannerTaskDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPlannerTaskProgressTaskBoardFormat", "ApiReferenceLink": null, @@ -286663,7 +286663,7 @@ "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -286703,7 +286703,7 @@ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "ApiReferenceLink": null, @@ -286742,7 +286742,7 @@ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyActivityBasedTimeoutPolicyApplyTo", "ApiReferenceLink": null, @@ -286757,7 +286757,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyActivityBasedTimeoutPolicyApplyTo", "ApiReferenceLink": null, @@ -286825,7 +286825,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAdminConsentRequestPolicy", "ApiReferenceLink": null, @@ -286872,7 +286872,7 @@ "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -286912,7 +286912,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAppManagementPolicy", "ApiReferenceLink": null, @@ -286951,7 +286951,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAppManagementPolicyApplyTo", "ApiReferenceLink": null, @@ -286966,7 +286966,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAppManagementPolicyApplyTo", "ApiReferenceLink": null, @@ -287100,7 +287100,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationFlowPolicy", "ApiReferenceLink": null, @@ -287131,7 +287131,7 @@ "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationMethodPolicy", "ApiReferenceLink": null, @@ -287145,7 +287145,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -287160,7 +287160,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", "ApiReferenceLink": null, @@ -287188,7 +287188,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -287228,7 +287228,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationStrengthPolicy", "ApiReferenceLink": null, @@ -287267,7 +287267,7 @@ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -287282,7 +287282,7 @@ "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", "ApiReferenceLink": null, @@ -287350,7 +287350,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyAuthorizationPolicy", "ApiReferenceLink": null, @@ -287381,7 +287381,7 @@ "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -287421,7 +287421,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyClaimMappingPolicy", "ApiReferenceLink": null, @@ -287460,7 +287460,7 @@ "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyClaimMappingPolicyApplyTo", "ApiReferenceLink": null, @@ -287475,7 +287475,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyClaimMappingPolicyApplyTo", "ApiReferenceLink": null, @@ -287639,7 +287639,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicy", "ApiReferenceLink": null, @@ -287670,7 +287670,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyDefault", "ApiReferenceLink": null, @@ -287701,7 +287701,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -287733,7 +287733,7 @@ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyPartner", "ApiReferenceLink": null, @@ -287795,7 +287795,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", "ApiReferenceLink": null, @@ -287827,7 +287827,7 @@ "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyTemplate", "ApiReferenceLink": null, @@ -287858,7 +287858,7 @@ "OutputType": "IMicrosoftGraphPolicyTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", "ApiReferenceLink": null, @@ -287872,7 +287872,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", "ApiReferenceLink": null, @@ -287886,7 +287886,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyDefaultAppManagementPolicy", "ApiReferenceLink": null, @@ -287964,7 +287964,7 @@ "OutputType": "IMicrosoftGraphDeviceRegistrationPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -287979,7 +287979,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicy", "ApiReferenceLink": null, @@ -287993,7 +287993,7 @@ "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", "ApiReferenceLink": null, @@ -288050,7 +288050,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -288090,7 +288090,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -288129,7 +288129,7 @@ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo", "ApiReferenceLink": null, @@ -288144,7 +288144,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo", "ApiReferenceLink": null, @@ -288294,7 +288294,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "ApiReferenceLink": null, @@ -288308,7 +288308,7 @@ "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -288340,7 +288340,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicy", "ApiReferenceLink": null, @@ -288402,7 +288402,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -288417,7 +288417,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "ApiReferenceLink": null, @@ -288480,7 +288480,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -288495,7 +288495,7 @@ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "ApiReferenceLink": null, @@ -288558,7 +288558,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -288614,7 +288614,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicy", "ApiReferenceLink": null, @@ -288669,7 +288669,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -288725,7 +288725,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyAssignment", "ApiReferenceLink": null, @@ -288835,7 +288835,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyAssignmentPolicy", "ApiReferenceLink": null, @@ -288905,7 +288905,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -288920,7 +288920,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRule", "ApiReferenceLink": null, @@ -289031,7 +289031,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -289087,7 +289087,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyRule", "ApiReferenceLink": null, @@ -289198,7 +289198,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -289238,7 +289238,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenIssuancePolicy", "ApiReferenceLink": null, @@ -289277,7 +289277,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenIssuancePolicyApplyTo", "ApiReferenceLink": null, @@ -289292,7 +289292,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenIssuancePolicyApplyTo", "ApiReferenceLink": null, @@ -289442,7 +289442,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -289482,7 +289482,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenLifetimePolicy", "ApiReferenceLink": null, @@ -289521,7 +289521,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenLifetimePolicyApplyTo", "ApiReferenceLink": null, @@ -289536,7 +289536,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPolicyTokenLifetimePolicyApplyTo", "ApiReferenceLink": null, @@ -289686,7 +289686,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrint", "ApiReferenceLink": null, @@ -289700,7 +289700,7 @@ "OutputType": "IMicrosoftGraphPrint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintConnector", "ApiReferenceLink": null, @@ -289732,7 +289732,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintConnector", "ApiReferenceLink": null, @@ -289794,7 +289794,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintOperation", "ApiReferenceLink": null, @@ -289834,7 +289834,7 @@ "OutputType": "IMicrosoftGraphPrintOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintOperation", "ApiReferenceLink": null, @@ -289862,7 +289862,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinter", "ApiReferenceLink": null, @@ -289926,7 +289926,7 @@ "OutputType": "IMicrosoftGraphPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinter", "ApiReferenceLink": null, @@ -289965,7 +289965,7 @@ "OutputType": "IMicrosoftGraphPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterConnector", "ApiReferenceLink": null, @@ -289980,7 +289980,7 @@ "OutputType": "IMicrosoftGraphPrintConnector" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterConnector", "ApiReferenceLink": null, @@ -290082,7 +290082,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJob", "ApiReferenceLink": null, @@ -290162,7 +290162,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJob", "ApiReferenceLink": null, @@ -290321,7 +290321,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -290369,7 +290369,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobDocument", "ApiReferenceLink": null, @@ -290446,7 +290446,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobTask", "ApiReferenceLink": null, @@ -290461,7 +290461,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobTask", "ApiReferenceLink": null, @@ -290490,7 +290490,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobTaskDefinition", "ApiReferenceLink": null, @@ -290505,7 +290505,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterJobTaskTrigger", "ApiReferenceLink": null, @@ -290520,7 +290520,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterShare", "ApiReferenceLink": null, @@ -290560,7 +290560,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterShare", "ApiReferenceLink": null, @@ -290639,7 +290639,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -290679,7 +290679,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterTaskTrigger", "ApiReferenceLink": null, @@ -290758,7 +290758,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintPrinterTaskTriggerDefinition", "ApiReferenceLink": null, @@ -290773,7 +290773,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintService", "ApiReferenceLink": null, @@ -290957,7 +290957,7 @@ "OutputType": "IMicrosoftGraphPrintService" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintService", "ApiReferenceLink": null, @@ -291323,7 +291323,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintServiceEndpoint", "ApiReferenceLink": null, @@ -291507,7 +291507,7 @@ "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintServiceEndpoint", "ApiReferenceLink": null, @@ -291874,7 +291874,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShare", "ApiReferenceLink": null, @@ -291914,7 +291914,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShare", "ApiReferenceLink": null, @@ -291953,7 +291953,7 @@ "OutputType": "IMicrosoftGraphPrinterShare" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedGroup", "ApiReferenceLink": null, @@ -292047,7 +292047,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -292076,7 +292076,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedUser", "ApiReferenceLink": null, @@ -292170,7 +292170,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedUserMailboxSetting", "ApiReferenceLink": null, @@ -292185,7 +292185,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareAllowedUserServiceProvisioningError", "ApiReferenceLink": null, @@ -292253,7 +292253,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJob", "ApiReferenceLink": null, @@ -292333,7 +292333,7 @@ "OutputType": "IMicrosoftGraphPrintJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJob", "ApiReferenceLink": null, @@ -292492,7 +292492,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobDocument", "ApiReferenceLink": null, @@ -292507,7 +292507,7 @@ "OutputType": "IMicrosoftGraphPrintDocument" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobDocument", "ApiReferenceLink": null, @@ -292551,7 +292551,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobTask", "ApiReferenceLink": null, @@ -292566,7 +292566,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobTask", "ApiReferenceLink": null, @@ -292595,7 +292595,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobTaskDefinition", "ApiReferenceLink": null, @@ -292610,7 +292610,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintShareJobTaskTrigger", "ApiReferenceLink": null, @@ -292625,7 +292625,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintSharePrinter", "ApiReferenceLink": null, @@ -292665,7 +292665,7 @@ "OutputType": "IMicrosoftGraphPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintTaskDefinition", "ApiReferenceLink": null, @@ -292682,7 +292682,7 @@ "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintTaskDefinition", "ApiReferenceLink": null, @@ -292710,7 +292710,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -292725,7 +292725,7 @@ "OutputType": "IMicrosoftGraphPrintTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintTaskDefinitionTask", "ApiReferenceLink": null, @@ -292754,7 +292754,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrintTaskDefinitionTaskTrigger", "ApiReferenceLink": null, @@ -292769,7 +292769,7 @@ "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -292801,7 +292801,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequest", "ApiReferenceLink": null, @@ -292832,7 +292832,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApprover", "ApiReferenceLink": null, @@ -292847,7 +292847,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApprover", "ApiReferenceLink": null, @@ -292876,7 +292876,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApproverMailboxSetting", "ApiReferenceLink": null, @@ -292891,7 +292891,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError", "ApiReferenceLink": null, @@ -292920,7 +292920,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaborator", "ApiReferenceLink": null, @@ -292935,7 +292935,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaborator", "ApiReferenceLink": null, @@ -292964,7 +292964,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting", "ApiReferenceLink": null, @@ -292979,7 +292979,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError", "ApiReferenceLink": null, @@ -293039,7 +293039,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -293054,7 +293054,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -293117,7 +293117,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestTeam", "ApiReferenceLink": null, @@ -293132,7 +293132,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportAuthenticationMethod", "ApiReferenceLink": null, @@ -293146,7 +293146,7 @@ "OutputType": "IMicrosoftGraphAuthenticationMethodsRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -293178,7 +293178,7 @@ "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetail", "ApiReferenceLink": null, @@ -293240,7 +293240,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByPrinter", "ApiReferenceLink": null, @@ -293255,7 +293255,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByPrinter", "ApiReferenceLink": null, @@ -293283,7 +293283,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByUser", "ApiReferenceLink": null, @@ -293298,7 +293298,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByUser", "ApiReferenceLink": null, @@ -293617,7 +293617,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByPrinter", "ApiReferenceLink": null, @@ -293632,7 +293632,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByPrinter", "ApiReferenceLink": null, @@ -293660,7 +293660,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByUser", "ApiReferenceLink": null, @@ -293675,7 +293675,7 @@ "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByUser", "ApiReferenceLink": null, @@ -293978,7 +293978,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartner", "ApiReferenceLink": null, @@ -293992,7 +293992,7 @@ "OutputType": "IMicrosoftGraphPartners" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBilling", "ApiReferenceLink": null, @@ -294006,7 +294006,7 @@ "OutputType": "IMicrosoftGraphPartnersBilling" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -294021,7 +294021,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingManifest", "ApiReferenceLink": null, @@ -294049,7 +294049,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -294064,7 +294064,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingOperation", "ApiReferenceLink": null, @@ -294092,7 +294092,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingReconciliation", "ApiReferenceLink": null, @@ -294106,7 +294106,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingReconciliation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingReconciliationBilled", "ApiReferenceLink": null, @@ -294120,7 +294120,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingUsage", "ApiReferenceLink": null, @@ -294134,7 +294134,7 @@ "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingUsageBilled", "ApiReferenceLink": null, @@ -294148,7 +294148,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportPartnerBillingUsageUnbilled", "ApiReferenceLink": null, @@ -294177,7 +294177,7 @@ "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportRelyingPartyDetailedSummary", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getrelyingpartydetailedsummary?view=graph-rest-1.0", @@ -294192,7 +294192,7 @@ "OutputType": "IMicrosoftGraphRelyingPartyDetailedSummary" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgReportSecurity", "ApiReferenceLink": null, @@ -294928,7 +294928,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskDetection", "ApiReferenceLink": null, @@ -294943,7 +294943,7 @@ "OutputType": "IMicrosoftGraphRiskDetection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskDetection", "ApiReferenceLink": null, @@ -294971,7 +294971,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyServicePrincipal", "ApiReferenceLink": null, @@ -295003,7 +295003,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyServicePrincipal", "ApiReferenceLink": null, @@ -295065,7 +295065,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -295080,7 +295080,7 @@ "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyServicePrincipalHistory", "ApiReferenceLink": null, @@ -295143,7 +295143,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyUser", "ApiReferenceLink": null, @@ -295158,7 +295158,7 @@ "OutputType": "IMicrosoftGraphRiskyUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyUser", "ApiReferenceLink": null, @@ -295186,7 +295186,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyUserHistory", "ApiReferenceLink": null, @@ -295218,7 +295218,7 @@ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRiskyUserHistory", "ApiReferenceLink": null, @@ -295281,7 +295281,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagement", "ApiReferenceLink": null, @@ -295328,7 +295328,7 @@ "OutputType": "IMicrosoftGraphRoleManagement" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectory", "ApiReferenceLink": null, @@ -295342,7 +295342,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -295382,7 +295382,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryResourceNamespace", "ApiReferenceLink": null, @@ -295460,7 +295460,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -295500,7 +295500,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -295579,7 +295579,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -295635,7 +295635,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "ApiReferenceLink": null, @@ -295690,7 +295690,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -295760,7 +295760,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -295775,7 +295775,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -295790,7 +295790,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -295805,7 +295805,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -295861,7 +295861,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -295916,7 +295916,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing", "ApiReferenceLink": null, @@ -295931,7 +295931,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleAppScope", "ApiReferenceLink": null, @@ -296001,7 +296001,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope", "ApiReferenceLink": null, @@ -296016,7 +296016,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -296072,7 +296072,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -296127,7 +296127,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing", "ApiReferenceLink": null, @@ -296142,7 +296142,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -296212,7 +296212,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -296227,7 +296227,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -296242,7 +296242,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -296257,7 +296257,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedulePrincipal", "ApiReferenceLink": null, @@ -296272,7 +296272,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -296328,7 +296328,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -296383,7 +296383,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing", "ApiReferenceLink": null, @@ -296398,7 +296398,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope", "ApiReferenceLink": null, @@ -296468,7 +296468,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -296483,7 +296483,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -296498,7 +296498,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -296513,7 +296513,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -296528,7 +296528,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition", "ApiReferenceLink": null, @@ -296543,7 +296543,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -296599,7 +296599,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinition", "ApiReferenceLink": null, @@ -296709,7 +296709,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -296724,7 +296724,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -296753,7 +296753,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -296809,7 +296809,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -296864,7 +296864,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleAppScope", "ApiReferenceLink": null, @@ -296934,7 +296934,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope", "ApiReferenceLink": null, @@ -296949,7 +296949,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -297005,7 +297005,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -297060,7 +297060,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -297130,7 +297130,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -297145,7 +297145,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -297160,7 +297160,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -297175,7 +297175,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedulePrincipal", "ApiReferenceLink": null, @@ -297190,7 +297190,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -297246,7 +297246,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -297301,7 +297301,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope", "ApiReferenceLink": null, @@ -297371,7 +297371,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -297386,7 +297386,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -297401,7 +297401,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -297416,7 +297416,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -297431,7 +297431,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition", "ApiReferenceLink": null, @@ -297446,7 +297446,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagement", "ApiReferenceLink": null, @@ -297460,7 +297460,7 @@ "OutputType": "IMicrosoftGraphRbacApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -297475,7 +297475,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespace", "ApiReferenceLink": null, @@ -297503,7 +297503,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -297518,7 +297518,7 @@ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "ApiReferenceLink": null, @@ -297547,7 +297547,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -297619,7 +297619,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "ApiReferenceLink": null, @@ -297690,7 +297690,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "ApiReferenceLink": null, @@ -297776,7 +297776,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope", "ApiReferenceLink": null, @@ -297791,7 +297791,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal", "ApiReferenceLink": null, @@ -297806,7 +297806,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition", "ApiReferenceLink": null, @@ -297821,7 +297821,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -297836,7 +297836,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "ApiReferenceLink": null, @@ -297850,7 +297850,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing", "ApiReferenceLink": null, @@ -297865,7 +297865,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope", "ApiReferenceLink": null, @@ -297894,7 +297894,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope", "ApiReferenceLink": null, @@ -297909,7 +297909,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -297924,7 +297924,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "ApiReferenceLink": null, @@ -297938,7 +297938,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing", "ApiReferenceLink": null, @@ -297953,7 +297953,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -297982,7 +297982,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -297997,7 +297997,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -298012,7 +298012,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -298027,7 +298027,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal", "ApiReferenceLink": null, @@ -298042,7 +298042,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -298057,7 +298057,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "ApiReferenceLink": null, @@ -298071,7 +298071,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing", "ApiReferenceLink": null, @@ -298086,7 +298086,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope", "ApiReferenceLink": null, @@ -298115,7 +298115,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -298130,7 +298130,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -298145,7 +298145,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -298160,7 +298160,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -298175,7 +298175,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition", "ApiReferenceLink": null, @@ -298190,7 +298190,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -298310,7 +298310,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "ApiReferenceLink": null, @@ -298548,7 +298548,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -298563,7 +298563,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "ApiReferenceLink": null, @@ -298592,7 +298592,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -298607,7 +298607,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "ApiReferenceLink": null, @@ -298621,7 +298621,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope", "ApiReferenceLink": null, @@ -298650,7 +298650,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope", "ApiReferenceLink": null, @@ -298665,7 +298665,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -298680,7 +298680,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "ApiReferenceLink": null, @@ -298694,7 +298694,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope", "ApiReferenceLink": null, @@ -298723,7 +298723,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope", "ApiReferenceLink": null, @@ -298738,7 +298738,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal", "ApiReferenceLink": null, @@ -298753,7 +298753,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition", "ApiReferenceLink": null, @@ -298768,7 +298768,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal", "ApiReferenceLink": null, @@ -298783,7 +298783,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -298798,7 +298798,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "ApiReferenceLink": null, @@ -298812,7 +298812,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope", "ApiReferenceLink": null, @@ -298841,7 +298841,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope", "ApiReferenceLink": null, @@ -298856,7 +298856,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal", "ApiReferenceLink": null, @@ -298871,7 +298871,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition", "ApiReferenceLink": null, @@ -298886,7 +298886,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule", "ApiReferenceLink": null, @@ -298901,7 +298901,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition", "ApiReferenceLink": null, @@ -298916,7 +298916,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-get?view=graph-rest-1.0", @@ -298948,7 +298948,7 @@ "OutputType": "IMicrosoftGraphSchemaExtension" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSchemaExtension", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-list?view=graph-rest-1.0", @@ -299010,7 +299010,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchAcronym", "ApiReferenceLink": null, @@ -299042,7 +299042,7 @@ "OutputType": "IMicrosoftGraphSearchAcronym" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchAcronym", "ApiReferenceLink": null, @@ -299104,7 +299104,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchBookmark", "ApiReferenceLink": null, @@ -299136,7 +299136,7 @@ "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchBookmark", "ApiReferenceLink": null, @@ -299198,7 +299198,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchEntity", "ApiReferenceLink": null, @@ -299212,7 +299212,7 @@ "OutputType": "IMicrosoftGraphSearchEntity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchQna", "ApiReferenceLink": null, @@ -299244,7 +299244,7 @@ "OutputType": "IMicrosoftGraphSearchQna" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSearchQna", "ApiReferenceLink": null, @@ -299306,7 +299306,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAlert", "ApiReferenceLink": null, @@ -299338,7 +299338,7 @@ "OutputType": "IMicrosoftGraphAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAlert", "ApiReferenceLink": null, @@ -299400,7 +299400,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAlertV2", "ApiReferenceLink": null, @@ -299432,7 +299432,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAlertV2", "ApiReferenceLink": null, @@ -299494,7 +299494,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulation", "ApiReferenceLink": null, @@ -299510,7 +299510,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulation", "ApiReferenceLink": null, @@ -299524,7 +299524,7 @@ "OutputType": "IMicrosoftGraphSimulation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -299539,7 +299539,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomation", "ApiReferenceLink": null, @@ -299567,7 +299567,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -299582,7 +299582,7 @@ "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomationRun", "ApiReferenceLink": null, @@ -299625,7 +299625,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -299640,7 +299640,7 @@ "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotification", "ApiReferenceLink": null, @@ -299668,7 +299668,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -299683,7 +299683,7 @@ "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotificationDetail", "ApiReferenceLink": null, @@ -299712,7 +299712,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -299729,7 +299729,7 @@ "OutputType": "IMicrosoftGraphLandingPage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPage", "ApiReferenceLink": null, @@ -299757,7 +299757,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -299772,7 +299772,7 @@ "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPageDetail", "ApiReferenceLink": null, @@ -299801,7 +299801,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -299818,7 +299818,7 @@ "OutputType": "IMicrosoftGraphLoginPage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLoginPage", "ApiReferenceLink": null, @@ -299846,7 +299846,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -299861,7 +299861,7 @@ "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationOperation", "ApiReferenceLink": null, @@ -299889,7 +299889,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -299906,7 +299906,7 @@ "OutputType": "IMicrosoftGraphPayload" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationPayload", "ApiReferenceLink": null, @@ -299934,7 +299934,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -299949,7 +299949,7 @@ "OutputType": "IMicrosoftGraphTraining" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTraining", "ApiReferenceLink": null, @@ -299977,7 +299977,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -299992,7 +299992,7 @@ "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTrainingLanguageDetail", "ApiReferenceLink": null, @@ -300021,7 +300021,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCase", "ApiReferenceLink": null, @@ -300035,7 +300035,7 @@ "OutputType": "IMicrosoftGraphSecurityCasesRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -300067,7 +300067,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCase", "ApiReferenceLink": null, @@ -300129,7 +300129,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -300161,7 +300161,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodian", "ApiReferenceLink": null, @@ -300224,7 +300224,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation", "ApiReferenceLink": null, @@ -300256,7 +300256,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -300271,7 +300271,7 @@ "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", "ApiReferenceLink": null, @@ -300334,7 +300334,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite", "ApiReferenceLink": null, @@ -300349,7 +300349,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -300364,7 +300364,7 @@ "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", "ApiReferenceLink": null, @@ -300427,7 +300427,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup", "ApiReferenceLink": null, @@ -300442,7 +300442,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -300471,7 +300471,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -300486,7 +300486,7 @@ "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource", "ApiReferenceLink": null, @@ -300549,7 +300549,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -300581,7 +300581,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", "ApiReferenceLink": null, @@ -300610,7 +300610,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation", "ApiReferenceLink": null, @@ -300625,7 +300625,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -300640,7 +300640,7 @@ "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseOperation", "ApiReferenceLink": null, @@ -300703,7 +300703,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -300735,7 +300735,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSet", "ApiReferenceLink": null, @@ -300798,7 +300798,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -300830,7 +300830,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": null, @@ -300893,7 +300893,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -300925,7 +300925,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearch", "ApiReferenceLink": null, @@ -300956,7 +300956,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -300971,7 +300971,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", "ApiReferenceLink": null, @@ -301000,7 +301000,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation", "ApiReferenceLink": null, @@ -301047,7 +301047,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource", "ApiReferenceLink": null, @@ -301062,7 +301062,7 @@ "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource", "ApiReferenceLink": null, @@ -301091,7 +301091,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation", "ApiReferenceLink": null, @@ -301123,7 +301123,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryEstimateOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource", "ApiReferenceLink": null, @@ -301138,7 +301138,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource", "ApiReferenceLink": null, @@ -301167,7 +301167,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSetting", "ApiReferenceLink": null, @@ -301199,7 +301199,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -301231,7 +301231,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTag", "ApiReferenceLink": null, @@ -301262,7 +301262,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTagChildTag", "ApiReferenceLink": null, @@ -301277,7 +301277,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTagChildTag", "ApiReferenceLink": null, @@ -301338,7 +301338,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTagParent", "ApiReferenceLink": null, @@ -301353,7 +301353,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityIncident", "ApiReferenceLink": null, @@ -301385,7 +301385,7 @@ "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityIncident", "ApiReferenceLink": null, @@ -301416,7 +301416,7 @@ "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityIncidentAlert", "ApiReferenceLink": null, @@ -301431,7 +301431,7 @@ "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityIncidentAlert", "ApiReferenceLink": null, @@ -301506,7 +301506,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabel", "ApiReferenceLink": null, @@ -301520,7 +301520,7 @@ "OutputType": "IMicrosoftGraphSecurityLabelsRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelAuthority", "ApiReferenceLink": null, @@ -301535,7 +301535,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelAuthority", "ApiReferenceLink": null, @@ -301563,7 +301563,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelCategory", "ApiReferenceLink": null, @@ -301578,7 +301578,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelCategory", "ApiReferenceLink": null, @@ -301606,7 +301606,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -301621,7 +301621,7 @@ "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelCategorySubcategory", "ApiReferenceLink": null, @@ -301650,7 +301650,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelCitation", "ApiReferenceLink": null, @@ -301665,7 +301665,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelCitation", "ApiReferenceLink": null, @@ -301693,7 +301693,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelDepartment", "ApiReferenceLink": null, @@ -301708,7 +301708,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelDepartment", "ApiReferenceLink": null, @@ -301736,7 +301736,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -301751,7 +301751,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelFilePlanReference", "ApiReferenceLink": null, @@ -301779,7 +301779,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionEventType", "ApiReferenceLink": null, @@ -301794,7 +301794,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -301826,7 +301826,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabel", "ApiReferenceLink": null, @@ -301888,7 +301888,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptor", "ApiReferenceLink": null, @@ -301903,7 +301903,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorAuthorityTemplate", "ApiReferenceLink": null, @@ -301918,7 +301918,7 @@ "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorCategoryTemplate", "ApiReferenceLink": null, @@ -301933,7 +301933,7 @@ "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorCitationTemplate", "ApiReferenceLink": null, @@ -301948,7 +301948,7 @@ "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorDepartmentTemplate", "ApiReferenceLink": null, @@ -301963,7 +301963,7 @@ "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate", "ApiReferenceLink": null, @@ -301978,7 +301978,7 @@ "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -301993,7 +301993,7 @@ "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDispositionReviewStage", "ApiReferenceLink": null, @@ -302022,7 +302022,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySecureScore", "ApiReferenceLink": null, @@ -302054,7 +302054,7 @@ "OutputType": "IMicrosoftGraphSecureScore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySecureScore", "ApiReferenceLink": null, @@ -302085,7 +302085,7 @@ "OutputType": "IMicrosoftGraphSecureScore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -302117,7 +302117,7 @@ "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySecureScoreControlProfile", "ApiReferenceLink": null, @@ -302210,7 +302210,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -302242,7 +302242,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequest", "ApiReferenceLink": null, @@ -302273,7 +302273,7 @@ "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApprover", "ApiReferenceLink": null, @@ -302288,7 +302288,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApprover", "ApiReferenceLink": null, @@ -302317,7 +302317,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApproverMailboxSetting", "ApiReferenceLink": null, @@ -302332,7 +302332,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningError", "ApiReferenceLink": null, @@ -302361,7 +302361,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaborator", "ApiReferenceLink": null, @@ -302376,7 +302376,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaborator", "ApiReferenceLink": null, @@ -302405,7 +302405,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting", "ApiReferenceLink": null, @@ -302420,7 +302420,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError", "ApiReferenceLink": null, @@ -302527,7 +302527,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -302542,7 +302542,7 @@ "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestNote", "ApiReferenceLink": null, @@ -302605,7 +302605,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestTeam", "ApiReferenceLink": null, @@ -302620,7 +302620,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligence", "ApiReferenceLink": null, @@ -302634,7 +302634,7 @@ "OutputType": "IMicrosoftGraphSecurityThreatIntelligence" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -302649,7 +302649,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticle", "ApiReferenceLink": null, @@ -302677,7 +302677,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -302694,7 +302694,7 @@ "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleIndicator", "ApiReferenceLink": null, @@ -302709,7 +302709,7 @@ "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleIndicatorArtifact", "ApiReferenceLink": null, @@ -302740,7 +302740,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -302755,7 +302755,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHost", "ApiReferenceLink": null, @@ -302769,7 +302769,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostChildHostPair", "ApiReferenceLink": null, @@ -302784,7 +302784,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostChildHostPair", "ApiReferenceLink": null, @@ -302813,7 +302813,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -302830,7 +302830,7 @@ "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostComponent", "ApiReferenceLink": null, @@ -302861,7 +302861,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostComponentHost", "ApiReferenceLink": null, @@ -302876,7 +302876,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -302893,7 +302893,7 @@ "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCookie", "ApiReferenceLink": null, @@ -302924,7 +302924,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCookieHost", "ApiReferenceLink": null, @@ -302953,7 +302953,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -302970,7 +302970,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPair", "ApiReferenceLink": null, @@ -302985,7 +302985,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPairChildHost", "ApiReferenceLink": null, @@ -303016,7 +303016,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPairParentHost", "ApiReferenceLink": null, @@ -303031,7 +303031,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostParentHostPair", "ApiReferenceLink": null, @@ -303046,7 +303046,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostParentHostPair", "ApiReferenceLink": null, @@ -303075,7 +303075,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDns", "ApiReferenceLink": null, @@ -303090,7 +303090,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDns", "ApiReferenceLink": null, @@ -303119,7 +303119,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse", "ApiReferenceLink": null, @@ -303134,7 +303134,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse", "ApiReferenceLink": null, @@ -303163,7 +303163,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -303180,7 +303180,7 @@ "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPort", "ApiReferenceLink": null, @@ -303211,7 +303211,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPortHost", "ApiReferenceLink": null, @@ -303226,7 +303226,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPortMostRecentSslCertificate", "ApiReferenceLink": null, @@ -303241,7 +303241,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostReputation", "ApiReferenceLink": null, @@ -303256,7 +303256,7 @@ "OutputType": "IMicrosoftGraphSecurityHostReputation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -303275,7 +303275,7 @@ "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSslCertificate", "ApiReferenceLink": null, @@ -303306,7 +303306,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSslCertificateHost", "ApiReferenceLink": null, @@ -303321,7 +303321,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSubdomain", "ApiReferenceLink": null, @@ -303336,7 +303336,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSubdomain", "ApiReferenceLink": null, @@ -303365,7 +303365,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -303382,7 +303382,7 @@ "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostTracker", "ApiReferenceLink": null, @@ -303413,7 +303413,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostTrackerHost", "ApiReferenceLink": null, @@ -303428,7 +303428,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostWhoi", "ApiReferenceLink": null, @@ -303443,7 +303443,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -303458,7 +303458,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfile", "ApiReferenceLink": null, @@ -303486,7 +303486,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfileIndicator", "ApiReferenceLink": null, @@ -303501,7 +303501,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfileIndicator", "ApiReferenceLink": null, @@ -303530,7 +303530,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -303545,7 +303545,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecord", "ApiReferenceLink": null, @@ -303559,7 +303559,7 @@ "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecordArtifact", "ApiReferenceLink": null, @@ -303588,7 +303588,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecordParentHost", "ApiReferenceLink": null, @@ -303603,7 +303603,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -303618,7 +303618,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceProfileIndicator", "ApiReferenceLink": null, @@ -303632,7 +303632,7 @@ "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceProfileIndicatorArtifact", "ApiReferenceLink": null, @@ -303661,7 +303661,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -303676,7 +303676,7 @@ "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificate", "ApiReferenceLink": null, @@ -303704,7 +303704,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost", "ApiReferenceLink": null, @@ -303719,7 +303719,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost", "ApiReferenceLink": null, @@ -303748,7 +303748,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -303763,7 +303763,7 @@ "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSubdomain", "ApiReferenceLink": null, @@ -303791,7 +303791,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSubdomainHost", "ApiReferenceLink": null, @@ -303806,7 +303806,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -303821,7 +303821,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerability", "ApiReferenceLink": null, @@ -303835,7 +303835,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityArticle", "ApiReferenceLink": null, @@ -303850,7 +303850,7 @@ "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityArticle", "ApiReferenceLink": null, @@ -303879,7 +303879,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -303894,7 +303894,7 @@ "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityComponent", "ApiReferenceLink": null, @@ -303937,7 +303937,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -303952,7 +303952,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisHistoryRecord", "ApiReferenceLink": null, @@ -303980,7 +303980,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisHistoryRecordHost", "ApiReferenceLink": null, @@ -303995,7 +303995,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -304010,7 +304010,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecord", "ApiReferenceLink": null, @@ -304038,7 +304038,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordHistory", "ApiReferenceLink": null, @@ -304053,7 +304053,7 @@ "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordHistory", "ApiReferenceLink": null, @@ -304082,7 +304082,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordHost", "ApiReferenceLink": null, @@ -304097,7 +304097,7 @@ "OutputType": "IMicrosoftGraphSecurityHost" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityTrigger", "ApiReferenceLink": null, @@ -304111,7 +304111,7 @@ "OutputType": "IMicrosoftGraphSecurityTriggersRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -304143,7 +304143,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityTriggerRetentionEvent", "ApiReferenceLink": null, @@ -304205,7 +304205,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityTriggerRetentionEventType", "ApiReferenceLink": null, @@ -304237,7 +304237,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityTriggerType", "ApiReferenceLink": null, @@ -304251,7 +304251,7 @@ "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -304283,7 +304283,7 @@ "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSecurityTriggerTypeRetentionEventType", "ApiReferenceLink": null, @@ -304345,7 +304345,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -304360,7 +304360,7 @@ "OutputType": "IMicrosoftGraphServiceHealth" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverview", "ApiReferenceLink": null, @@ -304388,7 +304388,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -304403,7 +304403,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverviewIssue", "ApiReferenceLink": null, @@ -304432,7 +304432,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -304447,7 +304447,7 @@ "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementIssue", "ApiReferenceLink": null, @@ -304475,7 +304475,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -304490,7 +304490,7 @@ "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementMessage", "ApiReferenceLink": null, @@ -304504,7 +304504,7 @@ "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -304519,7 +304519,7 @@ "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachment", "ApiReferenceLink": null, @@ -304592,7 +304592,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0", @@ -304648,7 +304648,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-1.0", @@ -304703,7 +304703,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalAppManagementPolicy", "ApiReferenceLink": null, @@ -304718,7 +304718,7 @@ "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalAppManagementPolicy", "ApiReferenceLink": null, @@ -304747,7 +304747,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -304762,7 +304762,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "ApiReferenceLink": null, @@ -304873,7 +304873,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -304888,7 +304888,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalAppRoleAssignment", "ApiReferenceLink": null, @@ -304999,7 +304999,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalByAppId", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0", @@ -305070,7 +305070,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalClaimMappingPolicy", "ApiReferenceLink": null, @@ -305291,7 +305291,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObject", "ApiReferenceLink": null, @@ -305306,7 +305306,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObject", "ApiReferenceLink": null, @@ -305361,7 +305361,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -305376,7 +305376,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -305461,7 +305461,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -305476,7 +305476,7 @@ "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "ApiReferenceLink": null, @@ -305555,7 +305555,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-1.0", @@ -305610,7 +305610,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -305625,7 +305625,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalEndpoint", "ApiReferenceLink": null, @@ -305654,7 +305654,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicy", "ApiReferenceLink": null, @@ -306032,7 +306032,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOf", "ApiReferenceLink": null, @@ -306047,7 +306047,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOf", "ApiReferenceLink": null, @@ -306102,7 +306102,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -306117,7 +306117,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -306131,7 +306131,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -306146,7 +306146,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -306160,7 +306160,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsGroup", "ApiReferenceLink": null, @@ -306175,7 +306175,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsGroup", "ApiReferenceLink": null, @@ -306290,7 +306290,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOauth2PermissionGrant", "ApiReferenceLink": null, @@ -306305,7 +306305,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOauth2PermissionGrant", "ApiReferenceLink": null, @@ -306384,7 +306384,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObject", "ApiReferenceLink": null, @@ -306399,7 +306399,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObject", "ApiReferenceLink": null, @@ -306454,7 +306454,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsApplication", "ApiReferenceLink": null, @@ -306469,7 +306469,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsApplication", "ApiReferenceLink": null, @@ -306483,7 +306483,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment", "ApiReferenceLink": null, @@ -306498,7 +306498,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment", "ApiReferenceLink": null, @@ -306512,7 +306512,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsEndpoint", "ApiReferenceLink": null, @@ -306527,7 +306527,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsEndpoint", "ApiReferenceLink": null, @@ -306541,7 +306541,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsGroup", "ApiReferenceLink": null, @@ -306556,7 +306556,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsGroup", "ApiReferenceLink": null, @@ -306570,7 +306570,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -306585,7 +306585,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -306730,7 +306730,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwner", "ApiReferenceLink": null, @@ -306785,7 +306785,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsAppRoleAssignment", "ApiReferenceLink": null, @@ -306800,7 +306800,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsAppRoleAssignment", "ApiReferenceLink": null, @@ -306814,7 +306814,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsEndpoint", "ApiReferenceLink": null, @@ -306829,7 +306829,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsEndpoint", "ApiReferenceLink": null, @@ -306843,7 +306843,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -306858,7 +306858,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsServicePrincipal", "ApiReferenceLink": null, @@ -306872,7 +306872,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsUser", "ApiReferenceLink": null, @@ -306887,7 +306887,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsUser", "ApiReferenceLink": null, @@ -307072,7 +307072,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalRemoteDesktopSecurityConfiguration", "ApiReferenceLink": null, @@ -307087,7 +307087,7 @@ "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -307102,7 +307102,7 @@ "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", "ApiReferenceLink": null, @@ -307131,7 +307131,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -307146,7 +307146,7 @@ "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalRiskDetection", "ApiReferenceLink": null, @@ -307174,7 +307174,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronization", "ApiReferenceLink": null, @@ -307223,7 +307223,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -307263,7 +307263,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJob", "ApiReferenceLink": null, @@ -307302,7 +307302,7 @@ "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobBulkUpload", "ApiReferenceLink": null, @@ -307372,7 +307372,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobSchema", "ApiReferenceLink": null, @@ -307428,7 +307428,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -307443,7 +307443,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectory", "ApiReferenceLink": null, @@ -307487,7 +307487,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -307527,7 +307527,7 @@ "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplate", "ApiReferenceLink": null, @@ -307606,7 +307606,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplateSchema", "ApiReferenceLink": null, @@ -307646,7 +307646,7 @@ "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -307661,7 +307661,7 @@ "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "ApiReferenceLink": null, @@ -307690,7 +307690,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTokenIssuancePolicy", "ApiReferenceLink": null, @@ -307705,7 +307705,7 @@ "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTokenIssuancePolicy", "ApiReferenceLink": null, @@ -307734,7 +307734,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTokenLifetimePolicy", "ApiReferenceLink": null, @@ -307749,7 +307749,7 @@ "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTokenLifetimePolicy", "ApiReferenceLink": null, @@ -307860,7 +307860,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOf", "ApiReferenceLink": null, @@ -307875,7 +307875,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOf", "ApiReferenceLink": null, @@ -307922,7 +307922,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -307937,7 +307937,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -307951,7 +307951,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -307966,7 +307966,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -307980,7 +307980,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -307995,7 +307995,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -308102,7 +308102,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareContentTypeBase", "ApiReferenceLink": null, @@ -308117,7 +308117,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareContentTypeBaseType", "ApiReferenceLink": null, @@ -308132,7 +308132,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareContentTypeBaseType", "ApiReferenceLink": null, @@ -308175,7 +308175,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareCreatedByUser", "ApiReferenceLink": null, @@ -308190,7 +308190,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -308205,7 +308205,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -308234,7 +308234,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareDriveItem", "ApiReferenceLink": null, @@ -308338,7 +308338,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareItem", "ApiReferenceLink": null, @@ -308353,7 +308353,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareItem", "ApiReferenceLink": null, @@ -308397,7 +308397,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareItemLastModifiedByUser", "ApiReferenceLink": null, @@ -308414,7 +308414,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -308431,7 +308431,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -308463,7 +308463,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareLastModifiedByUser", "ApiReferenceLink": null, @@ -308480,7 +308480,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -308497,7 +308497,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -308529,7 +308529,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareList", "ApiReferenceLink": null, @@ -308544,7 +308544,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListColumn", "ApiReferenceLink": null, @@ -308559,7 +308559,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListColumn", "ApiReferenceLink": null, @@ -308588,7 +308588,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListColumnSourceColumn", "ApiReferenceLink": null, @@ -308603,7 +308603,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentType", "ApiReferenceLink": null, @@ -308618,7 +308618,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentType", "ApiReferenceLink": null, @@ -308632,7 +308632,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumn", "ApiReferenceLink": null, @@ -308647,7 +308647,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumn", "ApiReferenceLink": null, @@ -308676,7 +308676,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -308691,7 +308691,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumnLink", "ApiReferenceLink": null, @@ -308720,7 +308720,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -308735,7 +308735,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -308764,7 +308764,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -308779,7 +308779,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", @@ -308809,7 +308809,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListCreatedByUser", "ApiReferenceLink": null, @@ -308824,7 +308824,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -308839,7 +308839,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -308868,7 +308868,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListDrive", "ApiReferenceLink": null, @@ -308883,7 +308883,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItem", "ApiReferenceLink": null, @@ -308900,7 +308900,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItem", "ApiReferenceLink": null, @@ -308914,7 +308914,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemActivityByInterval", "ApiReferenceLink": null, @@ -308935,7 +308935,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemAnalytic", "ApiReferenceLink": null, @@ -308952,7 +308952,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemCreatedByUser", "ApiReferenceLink": null, @@ -308969,7 +308969,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -308986,7 +308986,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -309018,7 +309018,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", @@ -309035,7 +309035,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -309052,7 +309052,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -309084,7 +309084,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -309101,7 +309101,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemDriveItem", "ApiReferenceLink": null, @@ -309135,7 +309135,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemField", "ApiReferenceLink": null, @@ -309152,7 +309152,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemVersion", "ApiReferenceLink": null, @@ -309169,7 +309169,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemVersion", "ApiReferenceLink": null, @@ -309201,7 +309201,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListItemVersionField", "ApiReferenceLink": null, @@ -309218,7 +309218,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListOperation", "ApiReferenceLink": null, @@ -309233,7 +309233,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListOperation", "ApiReferenceLink": null, @@ -309262,7 +309262,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListSubscription", "ApiReferenceLink": null, @@ -309277,7 +309277,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareListSubscription", "ApiReferenceLink": null, @@ -309306,7 +309306,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSharePermission", "ApiReferenceLink": null, @@ -309321,7 +309321,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareRoot", "ApiReferenceLink": null, @@ -309351,7 +309351,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-1.0", @@ -309391,7 +309391,7 @@ "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "ApiReferenceLink": null, @@ -309405,7 +309405,7 @@ "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgShareSite", "ApiReferenceLink": null, @@ -309420,7 +309420,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-get?view=graph-rest-1.0", @@ -309452,7 +309452,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSite", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-search?view=graph-rest-1.0", @@ -309483,7 +309483,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteActivityByInterval", "ApiReferenceLink": null, @@ -309500,7 +309500,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalytic", "ApiReferenceLink": null, @@ -309564,7 +309564,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -309579,7 +309579,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -309593,7 +309593,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -309608,7 +309608,7 @@ "OutputType": "IMicrosoftGraphItemActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -309637,7 +309637,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivityDriveItem", "ApiReferenceLink": null, @@ -309682,7 +309682,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -309746,7 +309746,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteAnalyticTime", "ApiReferenceLink": null, @@ -309810,7 +309810,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteApplicableContentTypeForList", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0", @@ -309873,7 +309873,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteColumn", "ApiReferenceLink": null, @@ -309921,7 +309921,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteColumn", "ApiReferenceLink": null, @@ -310016,7 +310016,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteColumnSourceColumn", "ApiReferenceLink": null, @@ -310031,7 +310031,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentType", "ApiReferenceLink": null, @@ -310079,7 +310079,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentType", "ApiReferenceLink": null, @@ -310126,7 +310126,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeBase", "ApiReferenceLink": null, @@ -310143,7 +310143,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeBaseType", "ApiReferenceLink": null, @@ -310160,7 +310160,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeBaseType", "ApiReferenceLink": null, @@ -310192,7 +310192,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumn", "ApiReferenceLink": null, @@ -310240,7 +310240,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumn", "ApiReferenceLink": null, @@ -310335,7 +310335,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -310350,7 +310350,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumnLink", "ApiReferenceLink": null, @@ -310379,7 +310379,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumnPosition", "ApiReferenceLink": null, @@ -310394,7 +310394,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumnPosition", "ApiReferenceLink": null, @@ -310423,7 +310423,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -310438,7 +310438,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", @@ -310549,7 +310549,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteDefaultDrive", "ApiReferenceLink": null, @@ -310613,7 +310613,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-1.0", @@ -310644,7 +310644,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteDrive", "ApiReferenceLink": null, @@ -310659,7 +310659,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteDrive", "ApiReferenceLink": null, @@ -310786,7 +310786,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteExternalColumn", "ApiReferenceLink": null, @@ -310801,7 +310801,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteExternalColumn", "ApiReferenceLink": null, @@ -310830,7 +310830,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPath", "ApiReferenceLink": null, @@ -310844,7 +310844,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathAnalytic", "ApiReferenceLink": null, @@ -310861,7 +310861,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathApplicableContentTypeForList", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0", @@ -310876,7 +310876,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathColumn", "ApiReferenceLink": null, @@ -310891,7 +310891,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathContentType", "ApiReferenceLink": null, @@ -310906,7 +310906,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathDrive", "ApiReferenceLink": null, @@ -310923,7 +310923,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathDrive", "ApiReferenceLink": null, @@ -310938,7 +310938,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathExternalColumn", "ApiReferenceLink": null, @@ -310953,7 +310953,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathList", "ApiReferenceLink": null, @@ -310967,7 +310967,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathOnenote", "ApiReferenceLink": null, @@ -310984,7 +310984,7 @@ "OutputType": "IMicrosoftGraphOnenote" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathOperation", "ApiReferenceLink": null, @@ -310999,7 +310999,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathPage", "ApiReferenceLink": null, @@ -311014,7 +311014,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathPermission", "ApiReferenceLink": null, @@ -311029,7 +311029,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathSite", "ApiReferenceLink": null, @@ -311044,7 +311044,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -311061,7 +311061,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetByPathTermStore", "ApiReferenceLink": null, @@ -311076,7 +311076,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteGetGraphBPrePathActivityByInterval", "ApiReferenceLink": null, @@ -311108,7 +311108,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteItemLastModifiedByUser", "ApiReferenceLink": null, @@ -311123,7 +311123,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -311138,7 +311138,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -311167,7 +311167,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteLastModifiedByUser", "ApiReferenceLink": null, @@ -311182,7 +311182,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -311197,7 +311197,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -311226,7 +311226,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteList", "ApiReferenceLink": null, @@ -311258,7 +311258,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteList", "ApiReferenceLink": null, @@ -311289,7 +311289,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListColumn", "ApiReferenceLink": null, @@ -311337,7 +311337,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListColumn", "ApiReferenceLink": null, @@ -311432,7 +311432,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListColumnSourceColumn", "ApiReferenceLink": null, @@ -311447,7 +311447,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentType", "ApiReferenceLink": null, @@ -311495,7 +311495,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentType", "ApiReferenceLink": null, @@ -311542,7 +311542,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -311590,7 +311590,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumn", "ApiReferenceLink": null, @@ -311685,7 +311685,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -311700,7 +311700,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnLink", "ApiReferenceLink": null, @@ -311729,7 +311729,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -311744,7 +311744,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -311773,7 +311773,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -311788,7 +311788,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", @@ -311900,7 +311900,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListCreatedByUser", "ApiReferenceLink": null, @@ -311915,7 +311915,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -311930,7 +311930,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -311959,7 +311959,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListDrive", "ApiReferenceLink": null, @@ -311974,7 +311974,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItem", "ApiReferenceLink": null, @@ -312014,7 +312014,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItem", "ApiReferenceLink": null, @@ -312045,7 +312045,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemActivityByInterval", "ApiReferenceLink": null, @@ -312062,7 +312062,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemAnalytic", "ApiReferenceLink": null, @@ -312126,7 +312126,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemCreatedByUser", "ApiReferenceLink": null, @@ -312141,7 +312141,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -312156,7 +312156,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -312185,7 +312185,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", @@ -312219,7 +312219,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -312275,7 +312275,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -312386,7 +312386,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -312401,7 +312401,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemDriveItem", "ApiReferenceLink": null, @@ -312480,7 +312480,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemField", "ApiReferenceLink": null, @@ -312495,7 +312495,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemVersion", "ApiReferenceLink": null, @@ -312527,7 +312527,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemVersion", "ApiReferenceLink": null, @@ -312590,7 +312590,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListItemVersionField", "ApiReferenceLink": null, @@ -312605,7 +312605,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListOperation", "ApiReferenceLink": null, @@ -312653,7 +312653,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListOperation", "ApiReferenceLink": null, @@ -312748,7 +312748,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListSubscription", "ApiReferenceLink": null, @@ -312763,7 +312763,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteListSubscription", "ApiReferenceLink": null, @@ -312792,7 +312792,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -312848,7 +312848,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteNotebook", "ApiReferenceLink": null, @@ -313017,7 +313017,7 @@ "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteNotebookSection", "ApiReferenceLink": null, @@ -313072,7 +313072,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -313127,7 +313127,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteOperation", "ApiReferenceLink": null, @@ -313198,7 +313198,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenotePage", "ApiReferenceLink": null, @@ -313246,7 +313246,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenotePage", "ApiReferenceLink": null, @@ -313356,7 +313356,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteResource", "ApiReferenceLink": null, @@ -313434,7 +313434,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteSection", "ApiReferenceLink": null, @@ -313490,7 +313490,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteSection", "ApiReferenceLink": null, @@ -313601,7 +313601,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -313657,7 +313657,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteSectionGroup", "ApiReferenceLink": null, @@ -313771,7 +313771,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -313826,7 +313826,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOnenoteSectionPage", "ApiReferenceLink": null, @@ -313873,7 +313873,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOperation", "ApiReferenceLink": null, @@ -313921,7 +313921,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteOperation", "ApiReferenceLink": null, @@ -314016,7 +314016,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePage", "ApiReferenceLink": null, @@ -314048,7 +314048,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePage", "ApiReferenceLink": null, @@ -314079,7 +314079,7 @@ "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePage", "ApiReferenceLink": null, @@ -314094,7 +314094,7 @@ "OutputType": "IMicrosoftGraphSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePage", "ApiReferenceLink": null, @@ -314125,7 +314125,7 @@ "OutputType": "IMicrosoftGraphSitePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayout", "ApiReferenceLink": null, @@ -314140,7 +314140,7 @@ "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -314155,7 +314155,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection", "ApiReferenceLink": null, @@ -314169,7 +314169,7 @@ "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -314184,7 +314184,7 @@ "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", "ApiReferenceLink": null, @@ -314213,7 +314213,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -314228,7 +314228,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", "ApiReferenceLink": null, @@ -314272,7 +314272,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutVerticalSection", "ApiReferenceLink": null, @@ -314287,7 +314287,7 @@ "OutputType": "IMicrosoftGraphVerticalSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -314302,7 +314302,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", "ApiReferenceLink": null, @@ -314331,7 +314331,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCreatedByUser", "ApiReferenceLink": null, @@ -314346,7 +314346,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -314361,7 +314361,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -314390,7 +314390,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageLastModifiedByUser", "ApiReferenceLink": null, @@ -314405,7 +314405,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -314420,7 +314420,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -314449,7 +314449,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -314464,7 +314464,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageAsSitePageWebPart", "ApiReferenceLink": null, @@ -314557,7 +314557,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageCreatedByUser", "ApiReferenceLink": null, @@ -314572,7 +314572,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -314587,7 +314587,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -314616,7 +314616,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageLastModifiedByUser", "ApiReferenceLink": null, @@ -314631,7 +314631,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -314646,7 +314646,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePageLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -314720,7 +314720,7 @@ "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePermission", "ApiReferenceLink": null, @@ -314735,7 +314735,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSitePermission", "ApiReferenceLink": null, @@ -314820,7 +314820,7 @@ "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStore", "ApiReferenceLink": null, @@ -314854,7 +314854,7 @@ "OutputType": "IMicrosoftGraphTermStore" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStore", "ApiReferenceLink": null, @@ -314883,7 +314883,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroup", "ApiReferenceLink": null, @@ -314917,7 +314917,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroup", "ApiReferenceLink": null, @@ -314983,7 +314983,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -315000,7 +315000,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSet", "ApiReferenceLink": null, @@ -315032,7 +315032,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -315053,7 +315053,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChild", "ApiReferenceLink": null, @@ -315091,7 +315091,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -315112,7 +315112,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelation", "ApiReferenceLink": null, @@ -315150,7 +315150,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -315171,7 +315171,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelationSet", "ApiReferenceLink": null, @@ -315192,7 +315192,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelationToTerm", "ApiReferenceLink": null, @@ -315213,7 +315213,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildSet", "ApiReferenceLink": null, @@ -315268,7 +315268,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetParentGroup", "ApiReferenceLink": null, @@ -315285,7 +315285,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -315302,7 +315302,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelation", "ApiReferenceLink": null, @@ -315334,7 +315334,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelationFromTerm", "ApiReferenceLink": null, @@ -315351,7 +315351,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelationSet", "ApiReferenceLink": null, @@ -315368,7 +315368,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelationToTerm", "ApiReferenceLink": null, @@ -315385,7 +315385,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -315419,7 +315419,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTerm", "ApiReferenceLink": null, @@ -315434,7 +315434,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -315451,7 +315451,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChild", "ApiReferenceLink": null, @@ -315483,7 +315483,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -315500,7 +315500,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -315532,7 +315532,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -315549,7 +315549,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelationSet", "ApiReferenceLink": null, @@ -315566,7 +315566,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -315583,7 +315583,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildSet", "ApiReferenceLink": null, @@ -315617,7 +315617,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -315634,7 +315634,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelation", "ApiReferenceLink": null, @@ -315666,7 +315666,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -315683,7 +315683,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelationSet", "ApiReferenceLink": null, @@ -315700,7 +315700,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelationToTerm", "ApiReferenceLink": null, @@ -315717,7 +315717,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermSet", "ApiReferenceLink": null, @@ -315734,7 +315734,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSet", "ApiReferenceLink": null, @@ -315768,7 +315768,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSet", "ApiReferenceLink": null, @@ -315783,7 +315783,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -315804,7 +315804,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChild", "ApiReferenceLink": null, @@ -315859,7 +315859,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -315880,7 +315880,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelation", "ApiReferenceLink": null, @@ -315918,7 +315918,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -315939,7 +315939,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelationSet", "ApiReferenceLink": null, @@ -315960,7 +315960,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelationToTerm", "ApiReferenceLink": null, @@ -315981,7 +315981,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildSet", "ApiReferenceLink": null, @@ -316019,7 +316019,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroup", "ApiReferenceLink": null, @@ -316036,7 +316036,7 @@ "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -316053,7 +316053,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSet", "ApiReferenceLink": null, @@ -316068,7 +316068,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -316089,7 +316089,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChild", "ApiReferenceLink": null, @@ -316127,7 +316127,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -316148,7 +316148,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelation", "ApiReferenceLink": null, @@ -316186,7 +316186,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm", "ApiReferenceLink": null, @@ -316207,7 +316207,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelationSet", "ApiReferenceLink": null, @@ -316228,7 +316228,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm", "ApiReferenceLink": null, @@ -316249,7 +316249,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildSet", "ApiReferenceLink": null, @@ -316287,7 +316287,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -316304,7 +316304,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelation", "ApiReferenceLink": null, @@ -316336,7 +316336,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelationFromTerm", "ApiReferenceLink": null, @@ -316353,7 +316353,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelationSet", "ApiReferenceLink": null, @@ -316370,7 +316370,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelationToTerm", "ApiReferenceLink": null, @@ -316387,7 +316387,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -316404,7 +316404,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTerm", "ApiReferenceLink": null, @@ -316419,7 +316419,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -316436,7 +316436,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChild", "ApiReferenceLink": null, @@ -316468,7 +316468,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -316485,7 +316485,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelation", "ApiReferenceLink": null, @@ -316517,7 +316517,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -316534,7 +316534,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelationSet", "ApiReferenceLink": null, @@ -316551,7 +316551,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -316568,7 +316568,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildSet", "ApiReferenceLink": null, @@ -316602,7 +316602,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -316619,7 +316619,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelation", "ApiReferenceLink": null, @@ -316651,7 +316651,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -316668,7 +316668,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelationSet", "ApiReferenceLink": null, @@ -316685,7 +316685,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelationToTerm", "ApiReferenceLink": null, @@ -316702,7 +316702,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermSet", "ApiReferenceLink": null, @@ -316719,7 +316719,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -316736,7 +316736,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelation", "ApiReferenceLink": null, @@ -316802,7 +316802,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelationFromTerm", "ApiReferenceLink": null, @@ -316819,7 +316819,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelationSet", "ApiReferenceLink": null, @@ -316836,7 +316836,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelationToTerm", "ApiReferenceLink": null, @@ -316853,7 +316853,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -316887,7 +316887,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTerm", "ApiReferenceLink": null, @@ -316902,7 +316902,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -316919,7 +316919,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChild", "ApiReferenceLink": null, @@ -316985,7 +316985,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -317002,7 +317002,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelation", "ApiReferenceLink": null, @@ -317034,7 +317034,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelationFromTerm", "ApiReferenceLink": null, @@ -317051,7 +317051,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelationSet", "ApiReferenceLink": null, @@ -317068,7 +317068,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelationToTerm", "ApiReferenceLink": null, @@ -317085,7 +317085,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildSet", "ApiReferenceLink": null, @@ -317119,7 +317119,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -317136,7 +317136,7 @@ "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelation", "ApiReferenceLink": null, @@ -317202,7 +317202,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelationFromTerm", "ApiReferenceLink": null, @@ -317219,7 +317219,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelationSet", "ApiReferenceLink": null, @@ -317236,7 +317236,7 @@ "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelationToTerm", "ApiReferenceLink": null, @@ -317253,7 +317253,7 @@ "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermSet", "ApiReferenceLink": null, @@ -317394,7 +317394,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSubSite", "ApiReferenceLink": null, @@ -317409,7 +317409,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgSubSite", "ApiReferenceLink": null, @@ -317472,7 +317472,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get?view=graph-rest-1.0", @@ -317560,7 +317560,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeam", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teams-list?view=graph-rest-1.0", @@ -317599,7 +317599,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannel", "ApiReferenceLink": null, @@ -317687,7 +317687,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannel", "ApiReferenceLink": null, @@ -317862,7 +317862,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelFileFolder", "ApiReferenceLink": null, @@ -317965,7 +317965,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMember", "ApiReferenceLink": null, @@ -318013,7 +318013,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMember", "ApiReferenceLink": null, @@ -318092,7 +318092,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessage", "ApiReferenceLink": null, @@ -318142,7 +318142,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessage", "ApiReferenceLink": null, @@ -318237,7 +318237,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -318285,7 +318285,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -318335,7 +318335,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -318430,7 +318430,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageReply", "ApiReferenceLink": null, @@ -318478,7 +318478,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageReply", "ApiReferenceLink": null, @@ -318573,7 +318573,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -318621,7 +318621,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -318671,7 +318671,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -318766,7 +318766,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -318800,7 +318800,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -318831,7 +318831,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -318846,7 +318846,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -318941,7 +318941,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelTab", "ApiReferenceLink": null, @@ -319053,7 +319053,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelTab", "ApiReferenceLink": null, @@ -319276,7 +319276,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamChannelTabTeamApp", "ApiReferenceLink": null, @@ -319330,7 +319330,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamGroupServiceProvisioningError", "ApiReferenceLink": null, @@ -319359,7 +319359,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamIncomingChannel", "ApiReferenceLink": null, @@ -319374,7 +319374,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamIncomingChannel", "ApiReferenceLink": null, @@ -319453,7 +319453,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamInstalledApp", "ApiReferenceLink": null, @@ -319613,7 +319613,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamInstalledApp", "ApiReferenceLink": null, @@ -319916,7 +319916,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamInstalledAppTeamApp", "ApiReferenceLink": null, @@ -319931,7 +319931,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -319946,7 +319946,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamMember", "ApiReferenceLink": null, @@ -319986,7 +319986,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamMember", "ApiReferenceLink": null, @@ -320065,7 +320065,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamOperation", "ApiReferenceLink": null, @@ -320080,7 +320080,7 @@ "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamOperation", "ApiReferenceLink": null, @@ -320109,7 +320109,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPermissionGrant", "ApiReferenceLink": null, @@ -320124,7 +320124,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPermissionGrant", "ApiReferenceLink": null, @@ -320315,7 +320315,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPhoto", "ApiReferenceLink": null, @@ -320345,7 +320345,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannel", "ApiReferenceLink": null, @@ -320401,7 +320401,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelFileFolder", "ApiReferenceLink": null, @@ -320431,7 +320431,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -320446,7 +320446,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMember", "ApiReferenceLink": null, @@ -320475,7 +320475,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -320490,7 +320490,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessage", "ApiReferenceLink": null, @@ -320519,7 +320519,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -320534,7 +320534,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -320551,7 +320551,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "ApiReferenceLink": null, @@ -320580,7 +320580,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -320595,7 +320595,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReply", "ApiReferenceLink": null, @@ -320624,7 +320624,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -320639,7 +320639,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -320656,7 +320656,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -320685,7 +320685,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -320702,7 +320702,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeam", "ApiReferenceLink": null, @@ -320716,7 +320716,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -320731,7 +320731,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -320775,7 +320775,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -320790,7 +320790,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelTab", "ApiReferenceLink": null, @@ -320819,7 +320819,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamPrimaryChannelTabTeamApp", "ApiReferenceLink": null, @@ -320834,7 +320834,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamSchedule", "ApiReferenceLink": null, @@ -320882,7 +320882,7 @@ "OutputType": "IMicrosoftGraphSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -320930,7 +320930,7 @@ "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleOfferShiftRequest", "ApiReferenceLink": null, @@ -320993,7 +320993,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -321041,7 +321041,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleOpenShift", "ApiReferenceLink": null, @@ -321088,7 +321088,7 @@ "OutputType": "IMicrosoftGraphOpenShift" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -321136,7 +321136,7 @@ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "ApiReferenceLink": null, @@ -321565,7 +321565,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -321580,7 +321580,7 @@ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "ApiReferenceLink": null, @@ -322104,7 +322104,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamTag", "ApiReferenceLink": null, @@ -322152,7 +322152,7 @@ "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamTag", "ApiReferenceLink": null, @@ -322247,7 +322247,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamTagMember", "ApiReferenceLink": null, @@ -322295,7 +322295,7 @@ "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamTagMember", "ApiReferenceLink": null, @@ -322390,7 +322390,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamTemplate", "ApiReferenceLink": null, @@ -322405,7 +322405,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamwork", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-get?view=graph-rest-1.0", @@ -322419,7 +322419,7 @@ "OutputType": "IMicrosoftGraphTeamwork" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedChat", "ApiReferenceLink": null, @@ -322434,7 +322434,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedChat", "ApiReferenceLink": null, @@ -322462,7 +322462,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -322477,7 +322477,7 @@ "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeam", "ApiReferenceLink": null, @@ -322491,7 +322491,7 @@ "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -322506,7 +322506,7 @@ "OutputType": "IMicrosoftGraphChannel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -322535,7 +322535,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelFileFolder", "ApiReferenceLink": null, @@ -322565,7 +322565,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -322580,7 +322580,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMember", "ApiReferenceLink": null, @@ -322609,7 +322609,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -322626,7 +322626,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessage", "ApiReferenceLink": null, @@ -322655,7 +322655,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -322670,7 +322670,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -322687,7 +322687,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageHostedContent", "ApiReferenceLink": null, @@ -322716,7 +322716,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -322731,7 +322731,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReply", "ApiReferenceLink": null, @@ -322760,7 +322760,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -322775,7 +322775,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -322792,7 +322792,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", "ApiReferenceLink": null, @@ -322821,7 +322821,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -322838,7 +322838,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeam", "ApiReferenceLink": null, @@ -322852,7 +322852,7 @@ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -322867,7 +322867,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember", "ApiReferenceLink": null, @@ -322911,7 +322911,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -322926,7 +322926,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelTab", "ApiReferenceLink": null, @@ -322955,7 +322955,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelTabTeamApp", "ApiReferenceLink": null, @@ -322984,7 +322984,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkTeamAppSetting", "ApiReferenceLink": null, @@ -323015,7 +323015,7 @@ "OutputType": "IMicrosoftGraphTeamsAppSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -323047,7 +323047,7 @@ "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTeamworkWorkforceIntegration", "ApiReferenceLink": null, @@ -323109,7 +323109,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -323141,7 +323141,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminCustomer", "ApiReferenceLink": null, @@ -323203,7 +323203,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -323218,7 +323218,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", "ApiReferenceLink": null, @@ -323281,7 +323281,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -323313,7 +323313,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationship", "ApiReferenceLink": null, @@ -323344,7 +323344,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -323376,7 +323376,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", "ApiReferenceLink": null, @@ -323470,7 +323470,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -323502,7 +323502,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipOperation", "ApiReferenceLink": null, @@ -323565,7 +323565,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -323597,7 +323597,7 @@ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipRequest", "ApiReferenceLink": null, @@ -323660,7 +323660,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipMultiTenantOrganization", "ApiReferenceLink": null, @@ -323699,7 +323699,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganization" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipMultiTenantOrganizationJoinRequest", "ApiReferenceLink": null, @@ -323730,7 +323730,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -323745,7 +323745,7 @@ "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgTenantRelationshipMultiTenantOrganizationTenant", "ApiReferenceLink": null, @@ -323823,7 +323823,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-user-get?view=graph-rest-1.0", @@ -323959,7 +323959,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-list?view=graph-rest-1.0", @@ -324078,7 +324078,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserActivity", "ApiReferenceLink": null, @@ -324093,7 +324093,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserActivity", "ApiReferenceLink": null, @@ -324122,7 +324122,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserActivityHistoryItem", "ApiReferenceLink": null, @@ -324137,7 +324137,7 @@ "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserActivityHistoryItem", "ApiReferenceLink": null, @@ -324151,7 +324151,7 @@ "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserActivityHistoryItemActivity", "ApiReferenceLink": null, @@ -324181,7 +324181,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAgreementAcceptance", "ApiReferenceLink": null, @@ -324196,7 +324196,7 @@ "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAgreementAcceptance", "ApiReferenceLink": null, @@ -324259,7 +324259,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAppRoleAssignment", "ApiReferenceLink": null, @@ -324274,7 +324274,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAppRoleAssignment", "ApiReferenceLink": null, @@ -324337,7 +324337,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -324385,7 +324385,7 @@ "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationEmailMethod", "ApiReferenceLink": null, @@ -324480,7 +324480,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationFido2Method", "ApiReferenceLink": null, @@ -324528,7 +324528,7 @@ "OutputType": "IMicrosoftGraphFido2AuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationFido2Method", "ApiReferenceLink": null, @@ -324623,7 +324623,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationMethod", "ApiReferenceLink": null, @@ -324671,7 +324671,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationMethod", "ApiReferenceLink": null, @@ -324766,7 +324766,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "ApiReferenceLink": null, @@ -324814,7 +324814,7 @@ "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "ApiReferenceLink": null, @@ -324909,7 +324909,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "ApiReferenceLink": null, @@ -324924,7 +324924,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationOperation", "ApiReferenceLink": null, @@ -324972,7 +324972,7 @@ "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationOperation", "ApiReferenceLink": null, @@ -325001,7 +325001,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationPasswordMethod", "ApiReferenceLink": null, @@ -325049,7 +325049,7 @@ "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationPasswordMethod", "ApiReferenceLink": null, @@ -325144,7 +325144,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -325192,7 +325192,7 @@ "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationPhoneMethod", "ApiReferenceLink": null, @@ -325287,7 +325287,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationSoftwareOathMethod", "ApiReferenceLink": null, @@ -325335,7 +325335,7 @@ "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationSoftwareOathMethod", "ApiReferenceLink": null, @@ -325430,7 +325430,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethod", "ApiReferenceLink": null, @@ -325478,7 +325478,7 @@ "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethod", "ApiReferenceLink": null, @@ -325573,7 +325573,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationWindowsHelloForBusinessMethod", "ApiReferenceLink": null, @@ -325621,7 +325621,7 @@ "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationWindowsHelloForBusinessMethod", "ApiReferenceLink": null, @@ -325716,7 +325716,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserAuthenticationWindowsHelloForBusinessMethodDevice", "ApiReferenceLink": null, @@ -325746,7 +325746,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCalendar", "ApiReferenceLink": null, @@ -325761,7 +325761,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCalendar", "ApiReferenceLink": null, @@ -325856,7 +325856,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCalendarEvent", "ApiReferenceLink": null, @@ -325895,7 +325895,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCalendarEventDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", @@ -326201,7 +326201,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChat", "ApiReferenceLink": null, @@ -326297,7 +326297,7 @@ "OutputType": "IMicrosoftGraphChat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChat", "ApiReferenceLink": null, @@ -326408,7 +326408,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatInstalledApp", "ApiReferenceLink": null, @@ -326423,7 +326423,7 @@ "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatInstalledApp", "ApiReferenceLink": null, @@ -326452,7 +326452,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatInstalledAppTeamApp", "ApiReferenceLink": null, @@ -326467,7 +326467,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -326482,7 +326482,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatLastMessagePreview", "ApiReferenceLink": null, @@ -326497,7 +326497,7 @@ "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMember", "ApiReferenceLink": null, @@ -326609,7 +326609,7 @@ "OutputType": "IMicrosoftGraphConversationMember" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMember", "ApiReferenceLink": null, @@ -326832,7 +326832,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessage", "ApiReferenceLink": null, @@ -326904,7 +326904,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessage", "ApiReferenceLink": null, @@ -327015,7 +327015,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -327087,7 +327087,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -327161,7 +327161,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageHostedContent", "ApiReferenceLink": null, @@ -327304,7 +327304,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageReply", "ApiReferenceLink": null, @@ -327319,7 +327319,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageReply", "ApiReferenceLink": null, @@ -327348,7 +327348,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageReplyDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", @@ -327363,7 +327363,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -327380,7 +327380,7 @@ "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatMessageReplyHostedContent", "ApiReferenceLink": null, @@ -327409,7 +327409,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatPermissionGrant", "ApiReferenceLink": null, @@ -327424,7 +327424,7 @@ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatPermissionGrant", "ApiReferenceLink": null, @@ -327453,7 +327453,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatPinnedMessage", "ApiReferenceLink": null, @@ -327470,7 +327470,7 @@ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatPinnedMessage", "ApiReferenceLink": null, @@ -327499,7 +327499,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatTab", "ApiReferenceLink": null, @@ -327514,7 +327514,7 @@ "OutputType": "IMicrosoftGraphTeamsTab" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatTab", "ApiReferenceLink": null, @@ -327543,7 +327543,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserChatTabTeamApp", "ApiReferenceLink": null, @@ -327558,7 +327558,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContact", "ApiReferenceLink": null, @@ -327590,7 +327590,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContact", "ApiReferenceLink": null, @@ -327653,7 +327653,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-1.0", @@ -327685,7 +327685,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactExtension", "ApiReferenceLink": null, @@ -327700,7 +327700,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactExtension", "ApiReferenceLink": null, @@ -327729,7 +327729,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolder", "ApiReferenceLink": null, @@ -327761,7 +327761,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolder", "ApiReferenceLink": null, @@ -327792,7 +327792,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -327807,7 +327807,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolder", "ApiReferenceLink": null, @@ -327838,7 +327838,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -327870,7 +327870,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContact", "ApiReferenceLink": null, @@ -327933,7 +327933,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-1.0", @@ -327965,7 +327965,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -327980,7 +327980,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactExtension", "ApiReferenceLink": null, @@ -328071,7 +328071,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-1.0", @@ -328086,7 +328086,7 @@ "OutputType": "IMicrosoftGraphContactFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderContact", "ApiReferenceLink": null, @@ -328118,7 +328118,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderContact", "ApiReferenceLink": null, @@ -328181,7 +328181,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderContactDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-1.0", @@ -328213,7 +328213,7 @@ "OutputType": "IMicrosoftGraphContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -328228,7 +328228,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderContactExtension", "ApiReferenceLink": null, @@ -328319,7 +328319,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserContactFolderDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-1.0", @@ -328500,7 +328500,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCreatedObject", "ApiReferenceLink": null, @@ -328515,7 +328515,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCreatedObject", "ApiReferenceLink": null, @@ -328578,7 +328578,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCreatedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -328593,7 +328593,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserCreatedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -328701,7 +328701,7 @@ "OutputType": "IMicrosoftGraphCalendar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDefaultCalendarEvent", "ApiReferenceLink": null, @@ -328782,7 +328782,7 @@ "OutputType": "IMicrosoftGraphScheduleInformation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDefaultDrive", "ApiReferenceLink": null, @@ -328846,7 +328846,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-delta?view=graph-rest-1.0", @@ -328893,7 +328893,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -328908,7 +328908,7 @@ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "ApiReferenceLink": null, @@ -328937,7 +328937,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDirectReport", "ApiReferenceLink": null, @@ -328952,7 +328952,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDirectReport", "ApiReferenceLink": null, @@ -329007,7 +329007,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDirectReportAsOrgContact", "ApiReferenceLink": null, @@ -329022,7 +329022,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDirectReportAsOrgContact", "ApiReferenceLink": null, @@ -329036,7 +329036,7 @@ "OutputType": "IMicrosoftGraphOrgContact" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDirectReportAsUser", "ApiReferenceLink": null, @@ -329051,7 +329051,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDirectReportAsUser", "ApiReferenceLink": null, @@ -329151,7 +329151,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDrive", "ApiReferenceLink": null, @@ -329166,7 +329166,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDrive", "ApiReferenceLink": null, @@ -329229,7 +329229,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveBundle", "ApiReferenceLink": null, @@ -329244,7 +329244,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveBundle", "ApiReferenceLink": null, @@ -329288,7 +329288,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveContentTypeBase", "ApiReferenceLink": null, @@ -329303,7 +329303,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -329318,7 +329318,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveContentTypeBaseType", "ApiReferenceLink": null, @@ -329411,7 +329411,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveCreatedByUser", "ApiReferenceLink": null, @@ -329426,7 +329426,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -329441,7 +329441,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -329470,7 +329470,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveFollowing", "ApiReferenceLink": null, @@ -329485,7 +329485,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveFollowing", "ApiReferenceLink": null, @@ -329529,7 +329529,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItem", "ApiReferenceLink": null, @@ -329544,7 +329544,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItem", "ApiReferenceLink": null, @@ -329558,7 +329558,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", @@ -329575,7 +329575,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemAnalytic", "ApiReferenceLink": null, @@ -329590,7 +329590,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -329605,7 +329605,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -329619,7 +329619,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -329648,7 +329648,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -329663,7 +329663,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticTime", "ApiReferenceLink": null, @@ -329678,7 +329678,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemChild", "ApiReferenceLink": null, @@ -329693,7 +329693,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemChild", "ApiReferenceLink": null, @@ -329767,7 +329767,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemCreatedByUser", "ApiReferenceLink": null, @@ -329782,7 +329782,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -329797,7 +329797,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -329826,7 +329826,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", @@ -329843,7 +329843,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemItemLastModifiedByUser", "ApiReferenceLink": null, @@ -329858,7 +329858,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -329873,7 +329873,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -329902,7 +329902,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemLastModifiedByUser", "ApiReferenceLink": null, @@ -329919,7 +329919,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -329936,7 +329936,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -329968,7 +329968,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItem", "ApiReferenceLink": null, @@ -329983,7 +329983,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemActivityByInterval", "ApiReferenceLink": null, @@ -330000,7 +330000,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemAnalytic", "ApiReferenceLink": null, @@ -330015,7 +330015,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemCreatedByUser", "ApiReferenceLink": null, @@ -330030,7 +330030,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -330045,7 +330045,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -330074,7 +330074,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -330089,7 +330089,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -330118,7 +330118,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -330133,7 +330133,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemDriveItem", "ApiReferenceLink": null, @@ -330163,7 +330163,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemField", "ApiReferenceLink": null, @@ -330178,7 +330178,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -330193,7 +330193,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemVersion", "ApiReferenceLink": null, @@ -330222,7 +330222,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemListItemVersionField", "ApiReferenceLink": null, @@ -330237,7 +330237,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemPermission", "ApiReferenceLink": null, @@ -330252,7 +330252,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemPermission", "ApiReferenceLink": null, @@ -330281,7 +330281,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemRetentionLabel", "ApiReferenceLink": null, @@ -330296,7 +330296,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemSubscription", "ApiReferenceLink": null, @@ -330311,7 +330311,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemSubscription", "ApiReferenceLink": null, @@ -330340,7 +330340,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -330355,7 +330355,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemThumbnail", "ApiReferenceLink": null, @@ -330384,7 +330384,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemVersion", "ApiReferenceLink": null, @@ -330399,7 +330399,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveItemVersion", "ApiReferenceLink": null, @@ -330443,7 +330443,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveLastModifiedByUser", "ApiReferenceLink": null, @@ -330460,7 +330460,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -330477,7 +330477,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -330509,7 +330509,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveList", "ApiReferenceLink": null, @@ -330524,7 +330524,7 @@ "OutputType": "IMicrosoftGraphList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListColumn", "ApiReferenceLink": null, @@ -330539,7 +330539,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListColumn", "ApiReferenceLink": null, @@ -330568,7 +330568,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListColumnSourceColumn", "ApiReferenceLink": null, @@ -330583,7 +330583,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentType", "ApiReferenceLink": null, @@ -330598,7 +330598,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentType", "ApiReferenceLink": null, @@ -330612,7 +330612,7 @@ "OutputType": "IMicrosoftGraphContentType" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -330627,7 +330627,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumn", "ApiReferenceLink": null, @@ -330656,7 +330656,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -330671,7 +330671,7 @@ "OutputType": "IMicrosoftGraphColumnLink" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnLink", "ApiReferenceLink": null, @@ -330700,7 +330700,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -330715,7 +330715,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnPosition", "ApiReferenceLink": null, @@ -330744,7 +330744,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnSourceColumn", "ApiReferenceLink": null, @@ -330759,7 +330759,7 @@ "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListContentTypeCompatibleHubContentType", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", @@ -330789,7 +330789,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListCreatedByUser", "ApiReferenceLink": null, @@ -330804,7 +330804,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -330819,7 +330819,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -330848,7 +330848,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListDrive", "ApiReferenceLink": null, @@ -330863,7 +330863,7 @@ "OutputType": "IMicrosoftGraphDrive" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItem", "ApiReferenceLink": null, @@ -330878,7 +330878,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItem", "ApiReferenceLink": null, @@ -330892,7 +330892,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemActivityByInterval", "ApiReferenceLink": null, @@ -330909,7 +330909,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemAnalytic", "ApiReferenceLink": null, @@ -330924,7 +330924,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemCreatedByUser", "ApiReferenceLink": null, @@ -330939,7 +330939,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -330954,7 +330954,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -330983,7 +330983,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", @@ -331000,7 +331000,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -331015,7 +331015,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -331044,7 +331044,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -331059,7 +331059,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemDriveItem", "ApiReferenceLink": null, @@ -331089,7 +331089,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemField", "ApiReferenceLink": null, @@ -331104,7 +331104,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemVersion", "ApiReferenceLink": null, @@ -331119,7 +331119,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemVersion", "ApiReferenceLink": null, @@ -331148,7 +331148,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListItemVersionField", "ApiReferenceLink": null, @@ -331163,7 +331163,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListOperation", "ApiReferenceLink": null, @@ -331178,7 +331178,7 @@ "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListOperation", "ApiReferenceLink": null, @@ -331207,7 +331207,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListSubscription", "ApiReferenceLink": null, @@ -331222,7 +331222,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveListSubscription", "ApiReferenceLink": null, @@ -331251,7 +331251,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRoot", "ApiReferenceLink": null, @@ -331266,7 +331266,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootActivityByInterval", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", @@ -331283,7 +331283,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootAnalytic", "ApiReferenceLink": null, @@ -331298,7 +331298,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -331313,7 +331313,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticItemActivityStat", "ApiReferenceLink": null, @@ -331327,7 +331327,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticItemActivityStatActivity", "ApiReferenceLink": null, @@ -331356,7 +331356,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticLastSevenDay", "ApiReferenceLink": null, @@ -331371,7 +331371,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticTime", "ApiReferenceLink": null, @@ -331386,7 +331386,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootChild", "ApiReferenceLink": null, @@ -331401,7 +331401,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootChild", "ApiReferenceLink": null, @@ -331460,7 +331460,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootCreatedByUser", "ApiReferenceLink": null, @@ -331475,7 +331475,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -331490,7 +331490,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -331519,7 +331519,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", @@ -331536,7 +331536,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootItemLastModifiedByUser", "ApiReferenceLink": null, @@ -331551,7 +331551,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootItemLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -331566,7 +331566,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootItemLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -331595,7 +331595,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootLastModifiedByUser", "ApiReferenceLink": null, @@ -331610,7 +331610,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootLastModifiedByUserMailboxSetting", "ApiReferenceLink": null, @@ -331625,7 +331625,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootLastModifiedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -331654,7 +331654,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItem", "ApiReferenceLink": null, @@ -331669,7 +331669,7 @@ "OutputType": "IMicrosoftGraphListItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemActivityByInterval", "ApiReferenceLink": null, @@ -331686,7 +331686,7 @@ "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemAnalytic", "ApiReferenceLink": null, @@ -331701,7 +331701,7 @@ "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemCreatedByUser", "ApiReferenceLink": null, @@ -331716,7 +331716,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemCreatedByUserMailboxSetting", "ApiReferenceLink": null, @@ -331731,7 +331731,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemCreatedByUserServiceProvisioningError", "ApiReferenceLink": null, @@ -331760,7 +331760,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -331775,7 +331775,7 @@ "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemDocumentSetVersion", "ApiReferenceLink": null, @@ -331804,7 +331804,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemDocumentSetVersionField", "ApiReferenceLink": null, @@ -331819,7 +331819,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemDriveItem", "ApiReferenceLink": null, @@ -331849,7 +331849,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemField", "ApiReferenceLink": null, @@ -331864,7 +331864,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -331879,7 +331879,7 @@ "OutputType": "IMicrosoftGraphListItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemVersion", "ApiReferenceLink": null, @@ -331908,7 +331908,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootListItemVersionField", "ApiReferenceLink": null, @@ -331923,7 +331923,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootPermission", "ApiReferenceLink": null, @@ -331938,7 +331938,7 @@ "OutputType": "IMicrosoftGraphPermission" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootPermission", "ApiReferenceLink": null, @@ -331967,7 +331967,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootRetentionLabel", "ApiReferenceLink": null, @@ -331982,7 +331982,7 @@ "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootSubscription", "ApiReferenceLink": null, @@ -331997,7 +331997,7 @@ "OutputType": "IMicrosoftGraphSubscription" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootSubscription", "ApiReferenceLink": null, @@ -332026,7 +332026,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -332041,7 +332041,7 @@ "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootThumbnail", "ApiReferenceLink": null, @@ -332070,7 +332070,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootVersion", "ApiReferenceLink": null, @@ -332085,7 +332085,7 @@ "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveRootVersion", "ApiReferenceLink": null, @@ -332129,7 +332129,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveSpecial", "ApiReferenceLink": null, @@ -332144,7 +332144,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserDriveSpecial", "ApiReferenceLink": null, @@ -332188,7 +332188,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEvent", "ApiReferenceLink": null, @@ -332220,7 +332220,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEvent", "ApiReferenceLink": null, @@ -332259,7 +332259,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventAttachment", "ApiReferenceLink": null, @@ -332274,7 +332274,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventAttachment", "ApiReferenceLink": null, @@ -332358,7 +332358,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", @@ -332398,7 +332398,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventExtension", "ApiReferenceLink": null, @@ -332413,7 +332413,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventExtension", "ApiReferenceLink": null, @@ -332488,7 +332488,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventInstanceAttachment", "ApiReferenceLink": null, @@ -332503,7 +332503,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventInstanceAttachment", "ApiReferenceLink": null, @@ -332579,7 +332579,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventInstanceDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", @@ -332594,7 +332594,7 @@ "OutputType": "IMicrosoftGraphEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventInstanceExtension", "ApiReferenceLink": null, @@ -332609,7 +332609,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserEventInstanceExtension", "ApiReferenceLink": null, @@ -332638,7 +332638,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserExtension", "ApiReferenceLink": null, @@ -332653,7 +332653,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserExtension", "ApiReferenceLink": null, @@ -332682,7 +332682,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserFollowedSite", "ApiReferenceLink": null, @@ -332697,7 +332697,7 @@ "OutputType": "IMicrosoftGraphSite" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserFollowedSite", "ApiReferenceLink": null, @@ -332819,7 +332819,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserJoinedTeam", "ApiReferenceLink": null, @@ -332890,7 +332890,7 @@ "OutputType": "IMicrosoftGraphTeam" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserLastSharedMethodInsight", "ApiReferenceLink": null, @@ -332905,7 +332905,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserLicenseDetail", "ApiReferenceLink": null, @@ -332920,7 +332920,7 @@ "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserLicenseDetail", "ApiReferenceLink": null, @@ -333079,7 +333079,7 @@ "OutputType": "IMicrosoftGraphTeamsLicensingDetails" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailboxSetting", "ApiReferenceLink": null, @@ -333111,7 +333111,7 @@ "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolder", "ApiReferenceLink": null, @@ -333159,7 +333159,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolder", "ApiReferenceLink": null, @@ -333206,7 +333206,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -333221,7 +333221,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolder", "ApiReferenceLink": null, @@ -333316,7 +333316,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-1.0", @@ -333331,7 +333331,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -333346,7 +333346,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessage", "ApiReferenceLink": null, @@ -333360,7 +333360,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageAttachment", "ApiReferenceLink": null, @@ -333375,7 +333375,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageAttachment", "ApiReferenceLink": null, @@ -333434,7 +333434,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-1.0", @@ -333449,7 +333449,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -333464,7 +333464,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageExtension", "ApiReferenceLink": null, @@ -333585,7 +333585,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-1.0", @@ -333633,7 +333633,7 @@ "OutputType": "IMicrosoftGraphMailFolder" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessage", "ApiReferenceLink": null, @@ -333673,7 +333673,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessage", "ApiReferenceLink": null, @@ -333720,7 +333720,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageAttachment", "ApiReferenceLink": null, @@ -333735,7 +333735,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageAttachment", "ApiReferenceLink": null, @@ -333852,7 +333852,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-1.0", @@ -333900,7 +333900,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -333915,7 +333915,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMailFolderMessageExtension", "ApiReferenceLink": null, @@ -334054,7 +334054,7 @@ "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedAppPolicy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-getmanagedapppolicies?view=graph-rest-1.0", @@ -334086,7 +334086,7 @@ "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedAppRegistration", "ApiReferenceLink": null, @@ -334101,7 +334101,7 @@ "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedAppRegistration", "ApiReferenceLink": null, @@ -334130,7 +334130,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDevice", "ApiReferenceLink": null, @@ -334145,7 +334145,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDevice", "ApiReferenceLink": null, @@ -334159,7 +334159,7 @@ "OutputType": "IMicrosoftGraphManagedDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceCategory", "ApiReferenceLink": null, @@ -334174,7 +334174,7 @@ "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -334189,7 +334189,7 @@ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "ApiReferenceLink": null, @@ -334218,7 +334218,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -334233,7 +334233,7 @@ "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceConfigurationState", "ApiReferenceLink": null, @@ -334292,7 +334292,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -334307,7 +334307,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceLogCollectionResponse", "ApiReferenceLink": null, @@ -334321,7 +334321,7 @@ "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceUser", "ApiReferenceLink": null, @@ -334335,7 +334335,7 @@ "OutputType": "IMicrosoftGraphUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceWindowsProtectionState", "ApiReferenceLink": null, @@ -334350,7 +334350,7 @@ "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -334365,7 +334365,7 @@ "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", "ApiReferenceLink": null, @@ -334426,7 +334426,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserManager", "ApiReferenceLink": null, @@ -334734,7 +334734,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOf", "ApiReferenceLink": null, @@ -334766,7 +334766,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOf", "ApiReferenceLink": null, @@ -334813,7 +334813,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -334828,7 +334828,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -334859,7 +334859,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -334874,7 +334874,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -334905,7 +334905,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfAsGroup", "ApiReferenceLink": null, @@ -334920,7 +334920,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMemberOfAsGroup", "ApiReferenceLink": null, @@ -335095,7 +335095,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessage", "ApiReferenceLink": null, @@ -335135,7 +335135,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessage", "ApiReferenceLink": null, @@ -335182,7 +335182,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessageAttachment", "ApiReferenceLink": null, @@ -335197,7 +335197,7 @@ "OutputType": "IMicrosoftGraphAttachment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessageAttachment", "ApiReferenceLink": null, @@ -335314,7 +335314,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessageDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-1.0", @@ -335354,7 +335354,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessageExtension", "ApiReferenceLink": null, @@ -335369,7 +335369,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserMessageExtension", "ApiReferenceLink": null, @@ -335398,7 +335398,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOauth2PermissionGrant", "ApiReferenceLink": null, @@ -335413,7 +335413,7 @@ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOauth2PermissionGrant", "ApiReferenceLink": null, @@ -335476,7 +335476,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteNotebook", "ApiReferenceLink": null, @@ -335532,7 +335532,7 @@ "OutputType": "IMicrosoftGraphNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteNotebook", "ApiReferenceLink": null, @@ -335701,7 +335701,7 @@ "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteNotebookSection", "ApiReferenceLink": null, @@ -335756,7 +335756,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteNotebookSectionGroup", "ApiReferenceLink": null, @@ -335811,7 +335811,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteOperation", "ApiReferenceLink": null, @@ -335882,7 +335882,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenotePage", "ApiReferenceLink": null, @@ -335930,7 +335930,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenotePage", "ApiReferenceLink": null, @@ -336129,7 +336129,7 @@ "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteResource", "ApiReferenceLink": null, @@ -336207,7 +336207,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteSection", "ApiReferenceLink": null, @@ -336263,7 +336263,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteSection", "ApiReferenceLink": null, @@ -336374,7 +336374,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -336430,7 +336430,7 @@ "OutputType": "IMicrosoftGraphSectionGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteSectionGroup", "ApiReferenceLink": null, @@ -336544,7 +336544,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteSectionGroupSection", "ApiReferenceLink": null, @@ -336599,7 +336599,7 @@ "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnenoteSectionPage", "ApiReferenceLink": null, @@ -336646,7 +336646,7 @@ "OutputType": "IMicrosoftGraphOnenotePage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeeting", "ApiReferenceLink": null, @@ -336694,7 +336694,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeeting", "ApiReferenceLink": null, @@ -336741,7 +336741,7 @@ "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -336756,7 +336756,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReport", "ApiReferenceLink": null, @@ -336770,7 +336770,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -336785,7 +336785,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -336892,7 +336892,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -336907,7 +336907,7 @@ "OutputType": "IMicrosoftGraphCallRecording" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingRecording", "ApiReferenceLink": null, @@ -336951,7 +336951,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -336966,7 +336966,7 @@ "OutputType": "IMicrosoftGraphCallTranscript" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscript", "ApiReferenceLink": null, @@ -337133,7 +337133,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDevice", "ApiReferenceLink": null, @@ -337148,7 +337148,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDevice", "ApiReferenceLink": null, @@ -337203,7 +337203,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsAppRoleAssignment", "ApiReferenceLink": null, @@ -337218,7 +337218,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsAppRoleAssignment", "ApiReferenceLink": null, @@ -337232,7 +337232,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsDevice", "ApiReferenceLink": null, @@ -337247,7 +337247,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsDevice", "ApiReferenceLink": null, @@ -337261,7 +337261,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsEndpoint", "ApiReferenceLink": null, @@ -337276,7 +337276,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsEndpoint", "ApiReferenceLink": null, @@ -337391,7 +337391,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObject", "ApiReferenceLink": null, @@ -337406,7 +337406,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObject", "ApiReferenceLink": null, @@ -337461,7 +337461,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectAsApplication", "ApiReferenceLink": null, @@ -337476,7 +337476,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectAsApplication", "ApiReferenceLink": null, @@ -337490,7 +337490,7 @@ "OutputType": "IMicrosoftGraphApplication" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectAsGroup", "ApiReferenceLink": null, @@ -337505,7 +337505,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectAsGroup", "ApiReferenceLink": null, @@ -337519,7 +337519,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -337534,7 +337534,7 @@ "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserOwnedObjectAsServicePrincipal", "ApiReferenceLink": null, @@ -337898,7 +337898,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserPlanner", "ApiReferenceLink": null, @@ -337954,7 +337954,7 @@ "OutputType": "IMicrosoftGraphPlannerUser" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserPlannerPlan", "ApiReferenceLink": null, @@ -338001,7 +338001,7 @@ "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserPlannerTask", "ApiReferenceLink": null, @@ -338064,7 +338064,7 @@ "OutputType": "IMicrosoftGraphPlannerTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserPresence", "ApiReferenceLink": null, @@ -338104,7 +338104,7 @@ "OutputType": "IMicrosoftGraphPresence" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDevice", "ApiReferenceLink": null, @@ -338119,7 +338119,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDevice", "ApiReferenceLink": null, @@ -338174,7 +338174,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsAppRoleAssignment", "ApiReferenceLink": null, @@ -338189,7 +338189,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsAppRoleAssignment", "ApiReferenceLink": null, @@ -338203,7 +338203,7 @@ "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsDevice", "ApiReferenceLink": null, @@ -338218,7 +338218,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsDevice", "ApiReferenceLink": null, @@ -338232,7 +338232,7 @@ "OutputType": "IMicrosoftGraphDevice" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsEndpoint", "ApiReferenceLink": null, @@ -338247,7 +338247,7 @@ "OutputType": "IMicrosoftGraphEndpoint" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsEndpoint", "ApiReferenceLink": null, @@ -338362,7 +338362,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -338377,7 +338377,7 @@ "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserScopedRoleMemberOf", "ApiReferenceLink": null, @@ -338440,7 +338440,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSetting", "ApiReferenceLink": null, @@ -338472,7 +338472,7 @@ "OutputType": "IMicrosoftGraphUserSettings" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSettingShiftPreference", "ApiReferenceLink": null, @@ -338520,7 +338520,7 @@ "OutputType": "IMicrosoftGraphShiftPreferences" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSettingWindows", "ApiReferenceLink": null, @@ -338535,7 +338535,7 @@ "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSettingWindows", "ApiReferenceLink": null, @@ -338564,7 +338564,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -338579,7 +338579,7 @@ "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSettingWindowsInstance", "ApiReferenceLink": null, @@ -338640,7 +338640,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSharedInsight", "ApiReferenceLink": null, @@ -338655,7 +338655,7 @@ "OutputType": "IMicrosoftGraphSharedInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSharedInsight", "ApiReferenceLink": null, @@ -338686,7 +338686,7 @@ "OutputType": "IMicrosoftGraphSharedInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSharedResourceInsight", "ApiReferenceLink": null, @@ -338701,7 +338701,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSponsor", "ApiReferenceLink": null, @@ -338716,7 +338716,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserSponsor", "ApiReferenceLink": null, @@ -338795,7 +338795,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamwork", "ApiReferenceLink": null, @@ -338827,7 +338827,7 @@ "OutputType": "IMicrosoftGraphUserTeamwork" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -338844,7 +338844,7 @@ "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamworkAssociatedTeam", "ApiReferenceLink": null, @@ -338923,7 +338923,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamworkInstalledApp", "ApiReferenceLink": null, @@ -339051,7 +339051,7 @@ "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamworkInstalledApp", "ApiReferenceLink": null, @@ -339178,7 +339178,7 @@ "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamworkInstalledAppChat", "ApiReferenceLink": null, @@ -339386,7 +339386,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamworkInstalledAppTeamApp", "ApiReferenceLink": null, @@ -339401,7 +339401,7 @@ "OutputType": "IMicrosoftGraphTeamsApp" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTeamworkInstalledAppTeamAppDefinition", "ApiReferenceLink": null, @@ -339416,7 +339416,7 @@ "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoList", "ApiReferenceLink": null, @@ -339464,7 +339464,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoList", "ApiReferenceLink": null, @@ -339559,7 +339559,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoListDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/todotasklist-delta?view=graph-rest-1.0", @@ -339599,7 +339599,7 @@ "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoListExtension", "ApiReferenceLink": null, @@ -339614,7 +339614,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoListExtension", "ApiReferenceLink": null, @@ -339643,7 +339643,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTask", "ApiReferenceLink": null, @@ -339691,7 +339691,7 @@ "OutputType": "IMicrosoftGraphTodoTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTask", "ApiReferenceLink": null, @@ -339988,7 +339988,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskChecklistItem", "ApiReferenceLink": null, @@ -340036,7 +340036,7 @@ "OutputType": "IMicrosoftGraphChecklistItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskChecklistItem", "ApiReferenceLink": null, @@ -340179,7 +340179,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskDelta", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/todotask-delta?view=graph-rest-1.0", @@ -340227,7 +340227,7 @@ "OutputType": "IMicrosoftGraphTodoTask" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskExtension", "ApiReferenceLink": null, @@ -340242,7 +340242,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskExtension", "ApiReferenceLink": null, @@ -340271,7 +340271,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskLinkedResource", "ApiReferenceLink": null, @@ -340319,7 +340319,7 @@ "OutputType": "IMicrosoftGraphLinkedResource" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTodoTaskLinkedResource", "ApiReferenceLink": null, @@ -340414,7 +340414,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOf", "ApiReferenceLink": null, @@ -340429,7 +340429,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOf", "ApiReferenceLink": null, @@ -340492,7 +340492,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -340507,7 +340507,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsAdministrativeUnit", "ApiReferenceLink": null, @@ -340521,7 +340521,7 @@ "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -340536,7 +340536,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsDirectoryRole", "ApiReferenceLink": null, @@ -340550,7 +340550,7 @@ "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -340565,7 +340565,7 @@ "OutputType": "IMicrosoftGraphGroup" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsGroup", "ApiReferenceLink": null, @@ -340720,7 +340720,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTrendingInsight", "ApiReferenceLink": null, @@ -340735,7 +340735,7 @@ "OutputType": "IMicrosoftGraphTrending" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTrendingInsight", "ApiReferenceLink": null, @@ -340766,7 +340766,7 @@ "OutputType": "IMicrosoftGraphTrending" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserTrendingResourceInsight", "ApiReferenceLink": null, @@ -340830,7 +340830,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserUsedInsight", "ApiReferenceLink": null, @@ -340845,7 +340845,7 @@ "OutputType": "IMicrosoftGraphUsedInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserUsedInsight", "ApiReferenceLink": null, @@ -340876,7 +340876,7 @@ "OutputType": "IMicrosoftGraphUsedInsight" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgUserUsedResourceInsight", "ApiReferenceLink": null, @@ -340908,7 +340908,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEvent", "ApiReferenceLink": null, @@ -340923,7 +340923,7 @@ "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEvent", "ApiReferenceLink": null, @@ -340951,7 +340951,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventSession", "ApiReferenceLink": null, @@ -340966,7 +340966,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventSession", "ApiReferenceLink": null, @@ -340980,7 +340980,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -340995,7 +340995,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReport", "ApiReferenceLink": null, @@ -341009,7 +341009,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -341024,7 +341024,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -341083,7 +341083,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinar", "ApiReferenceLink": null, @@ -341098,7 +341098,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinar", "ApiReferenceLink": null, @@ -341112,7 +341112,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarByUserIdAndRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-1.0", @@ -341127,7 +341127,7 @@ "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarByUserRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-1.0", @@ -341156,7 +341156,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -341171,7 +341171,7 @@ "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarRegistration", "ApiReferenceLink": null, @@ -341200,7 +341200,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -341215,7 +341215,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarSession", "ApiReferenceLink": null, @@ -341229,7 +341229,7 @@ "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -341244,7 +341244,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReport", "ApiReferenceLink": null, @@ -341258,7 +341258,7 @@ "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -341273,7 +341273,7 @@ "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", "ApiReferenceLink": null, @@ -342631,7 +342631,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy", "ApiReferenceLink": null, @@ -343373,7 +343373,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy", "ApiReferenceLink": null, @@ -343405,7 +343405,7 @@ "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewtag-ashierarchy?view=graph-rest-beta", @@ -343437,7 +343437,7 @@ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementCloudPcRoleDefinitionInheritPermissionFromPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343452,7 +343452,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementCloudPcRoleDefinitionPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343467,7 +343467,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementDeviceManagementRoleDefinitionInheritPermissionFromPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343482,7 +343482,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementDeviceManagementRoleDefinitionPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343497,7 +343497,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementDirectoryRoleDefinitionInheritPermissionFromPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343512,7 +343512,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementDirectoryRoleDefinitionPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343552,7 +343552,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFromPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343567,7 +343567,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementEnterpriseAppRoleDefinitionPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343582,7 +343582,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343597,7 +343597,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementEntitlementManagementRoleDefinitionPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343612,7 +343612,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementExchangeRoleDefinitionInheritPermissionFromPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -343627,7 +343627,7 @@ "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementExchangeRoleDefinitionPrincipal", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", @@ -346126,7 +346126,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterApplicationSynchronizationJobSchemaOperator", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta", @@ -346141,7 +346141,7 @@ "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterApplicationSynchronizationTemplateSchemaOperator", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta", @@ -346173,7 +346173,7 @@ "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", @@ -346205,7 +346205,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageAssignmentByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-filterbycurrentuser?view=graph-rest-beta", @@ -346220,7 +346220,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageAssignmentRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-filterbycurrentuser?view=graph-rest-beta", @@ -346252,7 +346252,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-filterbycurrentuser?view=graph-rest-beta", @@ -346284,7 +346284,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterEntitlementManagementAssignmentRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-filterbycurrentuser?view=graph-rest-beta", @@ -346316,7 +346316,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDecisionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", @@ -346331,7 +346331,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDecisionInstanceDecisionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", @@ -346346,7 +346346,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDecisionInstanceStageByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta", @@ -346361,7 +346361,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDecisionInstanceStageDecisionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", @@ -346376,7 +346376,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-filterbycurrentuser?view=graph-rest-beta", @@ -346408,7 +346408,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta", @@ -346440,7 +346440,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", @@ -346472,7 +346472,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta", @@ -346504,7 +346504,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", @@ -346536,7 +346536,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAppConsentRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-filterByCurrentUser?view=graph-rest-beta", @@ -346568,7 +346568,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-filterByCurrentUser?view=graph-rest-beta", @@ -346600,7 +346600,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePermissionManagementScheduledPermissionApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", @@ -346615,7 +346615,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePermissionManagementScheduledPermissionRequestByCurrentUser", "ApiReferenceLink": null, @@ -346630,7 +346630,7 @@ "OutputType": "IMicrosoftGraphScheduledPermissionsRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", @@ -346645,7 +346645,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedule-filterbycurrentuser?view=graph-rest-beta", @@ -346677,7 +346677,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta", @@ -346709,7 +346709,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta", @@ -346741,7 +346741,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedule-filterbycurrentuser?view=graph-rest-beta", @@ -346773,7 +346773,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta", @@ -346805,7 +346805,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta", @@ -346837,7 +346837,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", @@ -346852,7 +346852,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-beta", @@ -346908,7 +346908,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta", @@ -346964,7 +346964,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta", @@ -347020,7 +347020,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-beta", @@ -347076,7 +347076,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta", @@ -347132,7 +347132,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta", @@ -347188,7 +347188,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleAssignmentApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", @@ -347203,7 +347203,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleAssignmentScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-beta", @@ -347218,7 +347218,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta", @@ -347233,7 +347233,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleAssignmentScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta", @@ -347248,7 +347248,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleEligibilityScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-beta", @@ -347263,7 +347263,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta", @@ -347278,7 +347278,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleEligibilityScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta", @@ -347293,7 +347293,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleAssignmentApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", @@ -347308,7 +347308,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleAssignmentScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-beta", @@ -347323,7 +347323,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta", @@ -347338,7 +347338,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta", @@ -347353,7 +347353,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleEligibilityScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-beta", @@ -347368,7 +347368,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta", @@ -347383,7 +347383,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta", @@ -347398,7 +347398,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterServicePrincipalSynchronizationJobSchemaOperator", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta", @@ -347430,7 +347430,7 @@ "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterServicePrincipalSynchronizationTemplateSchemaOperator", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta", @@ -347462,7 +347462,7 @@ "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterUserAppConsentRequestForApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-filterByCurrentUser?view=graph-rest-beta", @@ -347477,7 +347477,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterUserAppConsentRequestForApprovalUserConsentRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-filterByCurrentUser?view=graph-rest-beta", @@ -347492,7 +347492,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterUserApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", @@ -347507,7 +347507,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterUserPendingAccessReviewInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta", @@ -347522,7 +347522,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterUserPendingAccessReviewInstanceDecisionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", @@ -347537,7 +347537,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFilterUserPendingAccessReviewInstanceStageByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta", @@ -347989,7 +347989,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFunctionApplicationSynchronizationJobSchema", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta", @@ -348004,7 +348004,7 @@ "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFunctionApplicationSynchronizationTemplateSchema", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta", @@ -348036,7 +348036,7 @@ "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFunctionServicePrincipalSynchronizationJobSchema", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta", @@ -348068,7 +348068,7 @@ "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaFunctionServicePrincipalSynchronizationTemplateSchema", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta", @@ -348180,7 +348180,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaGraphDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-beta", @@ -348210,7 +348210,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaGraphGroupDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-beta", @@ -348261,7 +348261,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaGraphUserDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-beta", @@ -349407,7 +349407,7 @@ "OutputType": "IMicrosoftGraphMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaMessageChat", "ApiReferenceLink": null, @@ -349486,7 +349486,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaMessageTeam", "ApiReferenceLink": null, @@ -349573,7 +349573,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaMessageTeamChannel", "ApiReferenceLink": null, @@ -349661,7 +349661,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaMessageTeamworkDeletedTeamChannel", "ApiReferenceLink": null, @@ -349676,7 +349676,7 @@ "OutputType": "IMicrosoftGraphChatMessage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaMessageUserChat", "ApiReferenceLink": null, @@ -349874,7 +349874,7 @@ "OutputType": "IMicrosoftGraphMuteParticipantOperation" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaMyPrivilegedRoleAssignment", "ApiReferenceLink": null, @@ -349888,7 +349888,7 @@ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaMyPrivilegedRoleAssignmentRequest", "ApiReferenceLink": null, @@ -350954,7 +350954,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaRecentDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-beta", @@ -350969,7 +350969,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaRecentGroupDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-beta", @@ -350984,7 +350984,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaRecentUserActivity", "ApiReferenceLink": null, @@ -350999,7 +350999,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaRecentUserDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-beta", @@ -352567,7 +352567,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementDirectory", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-rolescheduleinstances?view=graph-rest-beta", @@ -352598,7 +352598,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementDirectoryRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-roleschedules?view=graph-rest-beta", @@ -352629,7 +352629,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementEnterpriseApp", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-rolescheduleinstances?view=graph-rest-beta", @@ -352644,7 +352644,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementEnterpriseAppRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-roleschedules?view=graph-rest-beta", @@ -352659,7 +352659,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementEntitlementManagement", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-rolescheduleinstances?view=graph-rest-beta", @@ -352673,7 +352673,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementEntitlementManagementRole", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-roleschedules?view=graph-rest-beta", @@ -353180,7 +353180,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaSummarizeDeviceManagementUserExperienceAnalyticDevicePerformanceDevice", "ApiReferenceLink": null, @@ -353228,7 +353228,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaSummarizeDeviceManagementUserExperienceAnalyticRemoteConnectionDeviceRemoteConnection", "ApiReferenceLink": null, @@ -353260,7 +353260,7 @@ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgBetaSummarizeDeviceManagementUserExperienceAnalyticResourcePerformanceDeviceResourcePerformance", "ApiReferenceLink": null, @@ -355689,7 +355689,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterApplicationSynchronizationJobSchemaOperator", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0", @@ -355704,7 +355704,7 @@ "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0", @@ -355736,7 +355736,7 @@ "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-1.0", @@ -355768,7 +355768,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterEntitlementManagementAccessPackageByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-filterbycurrentuser?view=graph-rest-1.0", @@ -355800,7 +355800,7 @@ "OutputType": "IMicrosoftGraphAccessPackage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterEntitlementManagementAssignmentByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-filterbycurrentuser?view=graph-rest-1.0", @@ -355832,7 +355832,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterEntitlementManagementAssignmentRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-filterbycurrentuser?view=graph-rest-1.0", @@ -355864,7 +355864,7 @@ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-filterbycurrentuser?view=graph-rest-1.0", @@ -355896,7 +355896,7 @@ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-1.0", @@ -355928,7 +355928,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-filterbycurrentuser?view=graph-rest-1.0", @@ -355960,7 +355960,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-1.0", @@ -355992,7 +355992,7 @@ "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-filterbycurrentuser?view=graph-rest-1.0", @@ -356024,7 +356024,7 @@ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernanceAppConsentRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-filterbycurrentuser?view=graph-rest-1.0", @@ -356056,7 +356056,7 @@ "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-filterbycurrentuser?view=graph-rest-1.0", @@ -356088,7 +356088,7 @@ "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentApprovalByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-1.0", @@ -356103,7 +356103,7 @@ "OutputType": "IMicrosoftGraphApproval" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedule-filterbycurrentuser?view=graph-rest-1.0", @@ -356135,7 +356135,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", @@ -356167,7 +356167,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-filterbycurrentuser?view=graph-rest-1.0", @@ -356199,7 +356199,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedule-filterbycurrentuser?view=graph-rest-1.0", @@ -356231,7 +356231,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", @@ -356263,7 +356263,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-1.0", @@ -356295,7 +356295,7 @@ "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-1.0", @@ -356351,7 +356351,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", @@ -356407,7 +356407,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-1.0", @@ -356463,7 +356463,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-1.0", @@ -356519,7 +356519,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", @@ -356575,7 +356575,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-1.0", @@ -356631,7 +356631,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-1.0", @@ -356646,7 +356646,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", @@ -356661,7 +356661,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-1.0", @@ -356676,7 +356676,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-1.0", @@ -356691,7 +356691,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", @@ -356706,7 +356706,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequestByCurrentUser", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-1.0", @@ -356721,7 +356721,7 @@ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0", @@ -356753,7 +356753,7 @@ "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0", @@ -357162,7 +357162,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFunctionApplicationSynchronizationJobSchema", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0", @@ -357177,7 +357177,7 @@ "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFunctionApplicationSynchronizationTemplateSchema", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0", @@ -357209,7 +357209,7 @@ "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFunctionServicePrincipalSynchronizationJobSchema", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0", @@ -357241,7 +357241,7 @@ "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0", @@ -357290,7 +357290,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgGraphDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-1.0", @@ -357320,7 +357320,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgGraphGroupDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-1.0", @@ -357371,7 +357371,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgGraphUserDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-1.0", @@ -358701,7 +358701,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgRecentDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-1.0", @@ -358716,7 +358716,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgRecentGroupDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-1.0", @@ -358731,7 +358731,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgRecentUserActivity", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/projectrome-get-recent-activities?view=graph-rest-1.0", @@ -358746,7 +358746,7 @@ "OutputType": "IMicrosoftGraphUserActivity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgRecentUserDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-1.0", @@ -359849,7 +359849,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticDevicePerformanceDevice", "ApiReferenceLink": null, @@ -476619,7 +476619,7 @@ "OutputType": null }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Request-MgBetaPrivilegedApprovalMy", "ApiReferenceLink": null, @@ -479719,7 +479719,7 @@ "OutputType": "IMicrosoftGraphImportedDeviceIdentity" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgBetaDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", @@ -479734,7 +479734,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgBetaDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", @@ -479749,7 +479749,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgBetaDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", @@ -479764,7 +479764,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgBetaGroupDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", @@ -479779,7 +479779,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgBetaGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", @@ -479794,7 +479794,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgBetaGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", @@ -479809,7 +479809,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgBetaUserDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", @@ -479824,7 +479824,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgBetaUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", @@ -479839,7 +479839,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgBetaUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", @@ -479854,7 +479854,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", @@ -479869,7 +479869,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", @@ -479884,7 +479884,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", @@ -479899,7 +479899,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgGroupDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", @@ -479914,7 +479914,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgGroupDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", @@ -479929,7 +479929,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgGroupDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", @@ -479944,7 +479944,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgUserDrive", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", @@ -479959,7 +479959,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgUserDriveItem", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", @@ -479974,7 +479974,7 @@ "OutputType": "IMicrosoftGraphDriveItem" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Search-MgUserDriveRoot", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", @@ -490345,7 +490345,7 @@ "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "CommandAlias": "Expand", + "CommandAlias": null, "Method": "GET", "Command": "Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-run?view=graph-rest-beta", diff --git a/tools/PostGeneration/NewCommandMetadata.ps1 b/tools/PostGeneration/NewCommandMetadata.ps1 index 160487ba3d..429cdf78d2 100644 --- a/tools/PostGeneration/NewCommandMetadata.ps1 +++ b/tools/PostGeneration/NewCommandMetadata.ps1 @@ -78,7 +78,7 @@ $ApiVersion | ForEach-Object { if (-not($Null -eq $CommandAliasValue)) { $CommandAliasValue = $CommandAliasValue.Replace("[global::System.Management.Automation.Alias(`"", "").Replace("`")", "").Replace("]", "") } - if($CommandAliasValue -eq "RHV") { + if(-not($CommandAliasValue -contains "-Mg")) { $CommandAliasValue = $null } $MappingValue = @{